Win32::GUI - Getting rid of console Window?

2002-02-01 Thread Agustin Rivera
Is there anyway to get a Win3::GUI app to not display the DOS console when running, so it runs just like any other GUI app? Agustin Rivera Webmaster, Pollstar.com http://www.pollstar.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Win32::GUI - Getting rid of console Window?

2002-02-01 Thread Morbus Iff
Is there anyway to get a Win3::GUI app to not display the DOS console when running, so it runs just like any other GUI app? Yuppers. use Win32::GUI; # hwnd is a handle to a window - basically, window's # way of keeping track of it's program windows... $hwnd =

RE: Win32::GUI - Getting rid of console Window?

2002-02-01 Thread Russ Foster
, February 01, 2002 11:01 AM To: Agustin Rivera; [EMAIL PROTECTED] Subject: Re: Win32::GUI - Getting rid of console Window? Is there anyway to get a Win3::GUI app to not display the DOS console when running, so it runs just like any other GUI app? Yuppers. use Win32::GUI; # hwnd

RE: Win32::GUI - Getting rid of console Window?

2002-02-01 Thread Morbus Iff
The only downside to this method is that an errant Perl Window can linger around long after you think it's been closed (i.e. it won't show anywhere expect under Task Manager). Russ, I had noticed that a while too. Somehow or another, with the Windows.pl file in the AmphetaDesk [1] source,