Re: Win32::Process question

2003-02-26 Thread Jenda Krynicky
From: [EMAIL PROTECTED] > I'm hoping someone has done this before. I need to spawn 3 processes > and then wait for all three to finish. > > spawn like this: > my $obj; > my $appname = $perl; > my $cmdline = "$deliverscript $arg"; > my $iflags = 1; > my $cflags = CREA

FW: Win32::Process question

2003-02-25 Thread Peter_Farrar
>but how can I tell when all three are finished? If I use > $obj1->Wait(INFINITE); > $obj2->Wait(INFINITE); > $obj3->Wait(INFINITE); > >what happens if $obj2 finishes before $obj1? looks like this works fine... PHF -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Win32::Process question

2003-02-25 Thread Peter_Farrar
Hi All, I'm hoping someone has done this before. I need to spawn 3 processes and then wait for all three to finish. spawn like this: my $obj; my $appname = $perl; my $cmdline = "$deliverscript $arg"; my $iflags = 1; my $cflags = CREATE_NEW_CONSOLE | NORMAL_PRIORITY_