ademmler has asked for the wisdom of the Perl Monks concerning the following question:
#! perl -w use strict; use Win32; use Win32::Console; my $pid; my $process = Win32::Spawn('testapp', 'testapp.exe with arguments', $p +id); my $CONSOLE = Win32::Console->new(); $CONSOLE->Alloc(); $CONSOLE->Title("Console Control"); $CONSOLE->Display() or die "Cant display Console"; sleep 30; __END__
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Win32::Console Question: How to attache a process to console
by BrowserUk (Patriarch) on Aug 04, 2010 at 17:01 UTC | |
|
Re: Win32::Console Question: How to attache a process to console
by dasgar (Priest) on Aug 04, 2010 at 14:53 UTC |