in reply to Re: run IE and wait until his close
in thread run IE and wait until his close
As soon as ie quits, the next line of code is executed.use strict; my $status = system('C:/PROGRA~1/INTERN~1/IEXPLORE.EXE'); print "Done with ie! after system\n"; my $ieStdOut= qx('C:/PROGRA~1/INTERN~1/IEXPLORE.EXE'); print "Done with ie! after qx\n"; my $ieStdOut= `C:/PROGRA~1/INTERN~1/IEXPLORE.EXE`; print "Done with ie! after backticks\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: run IE and wait until his close
by thor (Priest) on Sep 29, 2005 at 11:50 UTC |