in reply to
Wait function error with Win32::Process
Are you by chance using something like
$ProcessObj->wait(INFINITE);
? It should be
$ProcessObj->Wait(INFINITE);
, with a capital "W".
Comment on
Re: Wait function error with Win32::Process
In Section
Seekers of Perl Wisdom