[perl-win32-gui-users] Jean-Pierre Van Osselaer/U28993/KB/KredAlm is niet op zijn/haar kantoor.

2002-05-14 Thread jean-pierre . vanosselaer
I will be out of the office starting 14/05/2002 and will not return until 20/05/2002. verlof DISCLAIMER This e-mail and any attached files are confidential and may be legally privileged. If you are not the addressee, any disclosure, reprod

RE: [perl-win32-gui-users] WS_HSCROLL

2002-05-14 Thread Piske, Harald
Fist bit of -style docu: DON'T USE -style AT ALL!!! Use -addstyle and -substyle instead. That avoids missing a few default flags. Apart from that, I'm afraid, you will have to dig dep into the header files or other, filthy windows documentation for what bits can be used with which widget.

Re: [perl-win32-gui-users] WS_HSCROLL

2002-05-14 Thread H C
Being somewhat new to Win32::GUI, where can I read more documentation on '-style'? --- larry moore <[EMAIL PROTECTED]> wrote: > I am trying to add both vertical and horizontal > scroll bars. For some > reason my WS_HSCROLL command in the -style doesn't > work. > > > -style => WS_VSCROLL | WS_

[perl-win32-gui-users] WS_HSCROLL

2002-05-14 Thread larry moore
I am trying to add both vertical and horizontal scroll bars. For some reason my WS_HSCROLL command in the -style doesn't work. -style => WS_VSCROLL | WS_VISIBLE | 3 | WS_CHILD works as expected, but -style => WS_VSCROLL | WS_HSCROLL | WS_VISIBLE | 3 | WS_CHILD does not produce a horizontal sc

FW: [perl-win32-gui-users] Win32Gui-FAQ 0.3

2002-05-14 Thread Piske, Harald
Not much and fairly outdated, but still http://www.fairymails.com/perl/ This is probably better to learn from http://www.bahnhof.se/%7Ejohanl/perl/Loft/ and attached find what came to the list as FAQ last August,

[perl-win32-gui-users] Win32::GUI examples.

2002-05-14 Thread H C
I've found several examples of the use of Win32::GUI on the 'Net, as well as the docs...but does anyone have any examples they'd care to share/post? Thanks. Carv __ Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience http://launch.yahoo.com

[perl-win32-gui-users] Controlling WinAmp with Win32::GUI

2002-05-14 Thread H. Wade Minter
I've got a Perl/Tk application that I'm using to control WinAmp, via the WM_COMMAND API provided by WinAmp. To start with, if I start up WinAmp manually, and run a simple script like this: # use Win32::GUI; $winamphandle = Win32::GUI::FindWindow("Winamp v1.x",""); print "Handle: $winamphandl

RE: [perl-win32-gui-users] Textfield

2002-05-14 Thread larry moore
Upon a little closer look at the documentation for -multiline, it says the the return is \r\n, will this make a difference to my chomp? Should I be removing \r\n and searching for both chars? Thanks, Larry -Original Message- From: Sean Healy [mailto:[EMAIL PROTECTED] Sent: Tuesday, May

Re: [perl-win32-gui-users] Textfield

2002-05-14 Thread Sean Healy
Is there a way to make the return key register for a Textfield. I am using a sub Textfield_1_Change and would like to use the -text for this object to be used in a search string when the user has hit the return key. As a first step, I have been echoing each key press to the dos window, but the

[perl-win32-gui-users] Textfield

2002-05-14 Thread larry moore
Is there a way to make the return key register for a Textfield. I am using a sub Textfield_1_Change and would like to use the -text for this object to be used in a search string when the user has hit the return key. As a first step, I have been echoing each key press to the dos window, but the re