Re: [perl-win32-gui-users] [win32-gui] RichEdit bug?

2006-10-29 Thread Robert May
Octavian Rasnita wrote: Hi, I have seen that if the window has the -dialogui => 1 and if it contains a RichEdit field and if the focus is in that RichEdit field and if the user presses escape, the window closes but the application doesn't finish. I have tried to kill the application using contro

Re: [perl-win32-gui-users] Capture MouseMove event on the NotifyIcon

2006-10-29 Thread Robert May
Steve Lloyd wrote: Can anyone tell me how to capture the mousemove event on the notifyicon? I have tried the following but to no avail. -- my $systray = $mw->AddNotifyIcon( -icon=> $icon, -tip => $progname, -onMouseEvent => \&

[perl-win32-gui-users] events of the RichEdit field

2006-10-29 Thread Octavian Rasnita
Hi, I want to create a RichEdit field that handles the keyboard and mouse events, and other events (like ENM_LINK). I have imported all the events I want using: use Win32::GUI qw(MB_OK MB_YESNO MB_ICONEXCLAMATION MB_ICONHAND ENM_CHANGE ENM_KEYEVENTS ENM_LINK ENM_MOUSEEVENTS ENM_SELCHANGE); Then

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

2006-10-29 Thread Kind, Uwe (AGIS)
Hi Teddy, did you build Win32::GUI on your own or did you use the ppm-package? If you don't have the possibility to build the module, you will have to wait until an official patch is available. I've created an entry in the bug tracker for this issue. If you have a C-compiler readily to hand, t

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

2006-10-29 Thread jez_white
Hi, The best way to do this would be to use queues to communicate between the boss thread ( the thread running the GUI) and the worker thread (the one doing the data fetch). It might sound complicated, but it is very straight forward. I haven't got the link handy, but there is a thread util pa

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

2006-10-29 Thread Octavian Rasnita
Thank you very much for this code. I will try to test it, although I am not sure that I know how to apply that patch. Teddy - Original Message - From: "Kind, Uwe (AGIS)" <[EMAIL PROTECTED]> To: Sent: Sunday, October 29, 2006 1:35 AM Subject: Re: [perl-win32-gui-users] Combobox > Hi Te