Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Thanks for the help#!/c:/perl use Win32; use Win32::Process; use Tk; use Tk::HList; use Tk::Notebook; Win32::Process::Create($Win32::Process::Create::ProcessObj, 'C:/perl/bin/perl.exe', 'perl c:/perl/Format.pl', 0, DETACHER_PROCESS, ".") or die print_error(); use vars qw($int $entry); &init_ui(); MainLoop; sub init_ui { my $mw = MainWindow->new; $mw->title("TEST CASE"); } sub print_error() { return Win32::FormatMessage( Win32::GetLastError() ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: DOS shell window removal
by strat (Canon) on Mar 29, 2002 at 18:44 UTC | |
|
Re: DOS shell window removal
by gellyfish (Monsignor) on Mar 29, 2002 at 18:27 UTC | |
|
Re: DOS shell window removal
by belg4mit (Prior) on Mar 29, 2002 at 20:36 UTC |