Re: [perl-win32-gui-users] Systray Double Clicks Not Working?

2002-10-22 Thread Aldo Calpini
Morbus Iff wrote: > How come this will work: > >sub _Systray_Click { > $window->Enable; > $window->Show; >} > > but this won't: > >sub _Systray_DblClick { > $window->Enable; > $window->Show; >} next version will have a _DblClick event for NotifyIcons. don't

RE: [perl-win32-gui-users] Systray Double Clicks Not Working?

2002-10-21 Thread Morbus Iff
>Per the docs, DblClick event is not available on the NotifyIcon. However, >you can: sub NI_MouseEvent with a NotifyIcon named NI and catch them all >yourself. However, click events will be fired twice before the doubleclick This worked perfectly, thanks! -- Morbus Iff ( i'm the droid you'r

RE: [perl-win32-gui-users] Systray Double Clicks Not Working?

2002-10-21 Thread Frazier, Joe Jr
f. However, click events will be fired twice before the doubleclick event is fired. Joe Frazier, Jr. Technical Support Engineer Peopleclick Service Support Tel: +1-800-841-2365 E-Mail: mailto:[EMAIL PROTECTED] > -Original Message- > From: Morbus Iff [mailto:[EMAIL PROTECTED] > Sent:

[perl-win32-gui-users] Systray Double Clicks Not Working?

2002-10-21 Thread Morbus Iff
How come this will work: sub _Systray_Click { $window->Enable; $window->Show; } but this won't: sub _Systray_DblClick { $window->Enable; $window->Show; } I'd like to follow Win32 standards by only maximizing the window when a double click has been passed, but I'm no