Re: [perl-win32-gui-users] notify icon bug 0.0.670?

2004-01-30 Thread Glenn Linderman
On approximately 1/29/2004 2:30 PM, came the following characters from the keyboard of Johan Lindstrom: At 16:25 2004-01-29, Peter Eisengrein wrote: I had a script whose NotifyIcon worked fine under version 0.0.580 of Win32::GUI that no longer works since I upgraded to 0.0.670. It gets the eve

Re: [perl-win32-gui-users] notify icon bug 0.0.670?

2004-01-30 Thread Johan Lindstrom
At 16:25 2004-01-29, Peter Eisengrein wrote: I had a script whose NotifyIcon worked fine under version 0.0.580 of Win32::GUI that no longer works since I upgraded to 0.0.670. It gets the event and shows the appropriate menu when you click on the NI but does not get anything when you click on on

Re: [perl-win32-gui-users] Window position

2004-01-30 Thread Jez White
Hi, You can use the methods Top and Left on the terminate event of the window. You can search this mailing list with http://sourceforge.net/mailarchive/forum.php?forum_id=3220 Cheers, jez. - Original Message - From: "Hoff Miller" <[EMAIL PROTECTED]> To: Sent: Thursday, January 29, 2

[perl-win32-gui-users] Separator Lines

2004-01-30 Thread ramy
Is there a function to put a separator line in the design. or do I have to use the Graphics to draw the line for example 2 lines with 2 different colors to show it sinked Thanks Ramy

[perl-win32-gui-users] Timer use with NEM

2004-01-30 Thread Ross Clunie
Hi All please ignore my last post on this subject as I figured it out. You add the "-onTimer" option to the main window construction. Thanks anyway Regards Ross Clunie

RE: [perl-win32-gui-users] Combobox Event

2004-01-30 Thread darrik
try this. darrik > > use Win32::GUI; > > $Main = Win32::GUI::Window->new( > > -name => 'Main', > > -width => 350, > > -height => 200, > > -text => 'Pick a name' > > ); > > $NameList = Win32::GUI::Combobox->new( > > $Main, -name => "NameList",

[perl-win32-gui-users] Combobox Event

2004-01-30 Thread Jamie McAllister
What's the problem with this code? I'm trying to get a combobox to run an event subroutine. Is there another event I should be considering? From the documnetation I've seen there are but three asscoiated with a combobox; GotFocus, LostFocus, and Change. I'm using Activestate perl build 5.8.0 build

Re: [perl-win32-gui-users] notify icon bug 0.0.670?

2004-01-30 Thread Glenn Linderman
On approximately 1/29/2004 1:20 PM, came the following characters from the keyboard of Peter Eisengrein: > If you meant 0.0.558, should we also assume that changing versions of > Win32::GUI was all you changed? That the script is still > using OEM (old > event model)? Um, I guess so. Is t

RE: [perl-win32-gui-users] Window position

2004-01-30 Thread Peter Eisengrein
If you simply Hide() a window instead of reconstructing it each time, it should always keep the last position. Also should take less memory. That said, this little script should give you the info you're looking for. You should be able to search the mailing list on activestate.com -Pete use Win32

Re: [perl-win32-gui-users] Timer use with NEM

2004-01-30 Thread Jez White
Hi, I've altered your code slightly - and it works for me. There is a an NEM -onTimer event which is placed on the window. It handles all timers for that window - the name of the timer is passed to the handling sub. Does that make any sense? Cheers, jez. ##

Re: [perl-win32-gui-users] notify icon bug 0.0.670?

2004-01-30 Thread Glenn Linderman
On approximately 1/29/2004 7:25 AM, came the following characters from the keyboard of Peter Eisengrein: I had a script whose NotifyIcon worked fine under version 0.0.580 of Win32::GUI that no longer works since I upgraded to 0.0.670. It gets the event and shows the appropriate menu when you cl

Re: [perl-win32-gui-users] Sparator lines

2004-01-30 Thread Johan Lindstrom
At 16:45 2004-01-30, [EMAIL PROTECTED] wrote: Is there a function to put a separator line in the design. or do I have to use the Graphics to draw the line for example 2 lines with 2 different colors to show it sinked If you use The GUI Loft, add a Label and set the "Frame" property to "etched".

RE: [perl-win32-gui-users] notify icon bug 0.0.670?

2004-01-30 Thread Peter Eisengrein
> Hmm. I don't recall a 0.0.580 release. I thought they jumped from > 0.0.558 to 0.0.665. D'oh. Yeah, I meant 558. > If you meant 0.0.558, should we also assume that changing versions of > Win32::GUI was all you changed? That the script is still > using OEM (old > event model)? Um, I g

[perl-win32-gui-users] Timer use with NEM

2004-01-30 Thread Ross Clunie
Hi All, Can any one tell me if the Timer method has changed with the NEM. I have a app where I would like to display the main GUI then have a script run after a 3 sec delay, to allow the GUI to display. The script would send text to the Status bar depending on what conditions it finds. I have had

FW: [perl-win32-gui-users] Listview Colors and Buttons Images...

2004-01-30 Thread Glenn W Munroe
-Original Message- From: Glenn W Munroe [mailto:[EMAIL PROTECTED] Sent: Wednesday, 28 January, 2004 19:47 To: '[EMAIL PROTECTED]' Subject: RE: [perl-win32-gui-users] Listview Colors and Buttons Images... Ramy, To set ListView colours, try, for example: $Window->ListView->TextColo

[perl-win32-gui-users] Sparator lines

2004-01-30 Thread ramy
Is there a function to put a separator line in the design. or do I have to use the Graphics to draw the line for example 2 lines with 2 different colors to show it sinked Thanks Ramy