in reply to Re: Re: "background" perl processes on Win9X - how to avoid that "Perl - please close this application" on Windows Reboot/Logoff?
in thread "background" perl processes on Win9X - how to avoid that "Perl - please close this application" on Windows Reboot/Logoff?

From memory, the same messgae is sent to all windows on the system. You should beable to create an invisible window of 0x0 size using the CreateWindowEx API function. Your Perl App will need to add a message handler that responds to the appropriate messages.

MSDN Article on Message Only Windows

  • Comment on Re: Re: Re: "background" perl processes on Win9X - how to avoid that "Perl - please close this application" on Windows Reboot/Logoff?