Re: [perl-win32-gui-users] POE + Win32::GUI ?

2001-02-11 Thread Reini Urban
If Win32::GUI would be thread-safe :) POE is for sure a very nice abstraction layer for process management. I would also recommend reading an ordinary win32 sdk book, the charles petzold "Programming Windows" probably. http://www.relisoft.com/win32/ if you borrow it from a library you'll get the

[perl-win32-gui-users] POE + Win32::GUI ?

2001-02-11 Thread Ludvig af Klinteberg
I just read some about POE (Perl Object Environment - http://poe.perl.org), and it seems really interesting. I had the idea that by combining POE and Win32::GUI you could perhaps create a UI program that doesn't freeze whenever it's doing something time consuming. (e.g. sending/receiving data over

[perl-win32-gui-users] ListView_ItemClick

2001-02-11 Thread Erick J. Bourgeois
I wish to prevent the user from choosing more than one item in a Listview and since I didn't find an option for -multisel, like in a ListBox, I have attempted to achieve this through the ItemClick event for a ListView. sub ListView_ItemClick { if ($Win->ListView->SelectCount() > 1) { W