Re: [perl-win32-gui-users] mouse rolling events

2008-07-02 Thread E. Westbrook
Good timing. I just went through getting that to work. This code fragment might help you, it's straight from my app. Your mileage (and options and variables and etc) may vary. This isn't a complete app obviously, but I think this is all that's relevant to wheel scrolling. The $dy global is how

[perl-win32-gui-users] mouse rolling events

2008-07-02 Thread Waldemar Biernacki
Hey everybode! Do you know whether mouse scrolling button is implemented in Win32::GUI and how? Waldemar - Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! Studies have shown that voting for your favorite

Re: [perl-win32-gui-users] GUI and Console in the same application?

2008-07-02 Thread Jeremy White
Hi, The way I would approach this is to have one thread controlling the GUI and then have worker threads that do the actual work. Using the threading approach will allow you more interactivity, and if any of the jobs are processor bound you'll gain significant performance on dual/quad cores.