Hello everyone, I'm using ActiveState perlapp to create a Perl exe that uses the exec() statement to launch a batch file. The problem is that when I click on the exe, its window opens up in Normal Window mode. Is there a way to launch the app in Minimized Window (on the task tray) mode? The platform is Win2000. Thanks very much.
Example:
$filename = "doSomeTask.bat";
exec($filename) || die "Could not launch batch file\n";