in reply to Tk on Win32 - how to avoid background console window
I don't work with Windows and I'm not a saint, but I do have a Perl Cookbook :-) The solution there is: Start your program through another Perl script. Here is the snippet:
Regards, mawe#!/usr/bin/perl -w # loader - starts Perl scripts without the annoying DOS window use strict; use Win32; use Win32::Process; # Create the process object. Win32::Process::Create($Win32::Process::Create::ProcessObj, 'C:/perl5/bin/perl.exe', # Whereabouts of Perl 'perl realprogram', # 0, # Don't inherit. DETACHED_PROCESS, # ".") or # current dir. die print_error(); sub print_error() { return Win32::FormatMessage( Win32::GetLastError() ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Tk on Win32 - how to avoid background console window
by biochris (Beadle) on Jan 18, 2005 at 14:05 UTC | |
|
Re^2: Tk on Win32 - how to avoid background console window
by biochris (Beadle) on Jan 21, 2005 at 20:05 UTC |