in reply to subprocess delay on Windows with Perl/Tk
Backticks are for capturing the output from something (and hence will wait until the child returns before continuing). You probably want to look at one of the Win32::* modules (Win32::Process maybe) and use that instead (or system and/or fork/exec on a real OS).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: subprocess delay on Windows with Perl/Tk
by kgoess (Beadle) on Jun 03, 2004 at 18:58 UTC | |
by pfaut (Priest) on Jun 03, 2004 at 19:15 UTC | |
by kgoess (Beadle) on Jun 03, 2004 at 20:05 UTC | |
by pfaut (Priest) on Jun 03, 2004 at 22:25 UTC | |
by PodMaster (Abbot) on Jun 03, 2004 at 19:51 UTC |