Please tell me what is the correct way of running another .exe program under Windows from a program
>>> made using Win32::GUI.
>> Jeremy White <[EMAIL PROTECTED]> wrote:
Use Win32::GUI::ShellExecute
>Harlan Carvey wrote:
> I like to use Win32::Job
or
use Win32::Process;
or
system("start xxx.exe");
As with all things perl TIMTOWTDI.
Regards,
Rob.

