in reply to Re: Re: Perl TK on Win32
in thread Perl TK on Win32
Did you try this?
start /b yourprogram
start /? says:
B -- Start application without creating a new window. The application has ^C handling ignored. Unless the application enables ^C processing, ^Break is the only way to interrupt the applicationRun this, then remove the /b option and the windows start flashing again.
for my $i (0..10) { print "\nStarting $i\n"; system( qq{start /b perl -e "print 'program $i'";} ); }
/J
|
|---|