RE: [perl-win32-gui-users] Add ActiveX Hosting to Win32::GUI

2002-03-25 Thread Frazier, Joe Jr
> -Original Message- > From: Laurent ROCHER [mailto:[EMAIL PROTECTED] > Sent: Monday, March 25, 2002 5:54 PM > To: perl-win32-gui-users@lists.sourceforge.net > Subject: Re: [perl-win32-gui-users] Add ActiveX Hosting to Win32::GUI > > > Hello, > > I have put a new release with some i

Re: [perl-win32-gui-users] Add ActiveX Hosting to Win32::GUI

2002-03-25 Thread Johan Lindstrom
Lauret wrote: The Release Method must be call before all the window was destroy. The best place is in the _Terminate handler. It's necessary for my container class to release all the interface on the control before the activex window was destroy. I don't know actualy how automaticly detect tha

Re: [perl-win32-gui-users] Add ActiveX Hosting to Win32::GUI

2002-03-25 Thread Laurent ROCHER
Hello, I have put a new release with some improvement, some doc and add a new method Release. See : http://perso.club-internet.fr/rocherl/Win32GUI.html The Release Method must be call before all the window was destroy. The best place is in the _Terminate handler. It's necessary for my co

[perl-win32-gui-users] intercept a kill?

2002-03-25 Thread Joe_Pfaltzgraff
Joe [EMAIL PROTECTED] 03/25/2002 02:58 PM If a user presses ctrl-alt-del and selects a perl win32 program from the list and says "end task" is there a way to intercept this and ask the user if he is sure? Thanks! Joe

RE: [perl-win32-gui-users] Using fork to avoid a frozen window wh ile using LWP

2002-03-25 Thread Piske, Harald
> to user input. What I think you need to do is disable any user input > controls that might cause problems if they are clicked while you're > downloading, fork, have the child download, the parent return > to the when > the child has finished get it to re-enable the controls, eg You can also d

Re: [perl-win32-gui-users] Using fork to avoid a frozen window while using LWP

2002-03-25 Thread Kevin . ADM-Gibbs
Guillem, You'll probably find that forking and then using waitpid doesn't do what you want. If you're parent process is waiting it won't be able to respond to user input. What I think you need to do is disable any user input controls that might cause problems if they are clicked while you're dow