Hello,
We have a GUI where, if a button is clicked, Putty (the remote access
program) is launched using
System("C:\\Progra~1\\Putty\\putty.exe");
is launched. However, when this is executed, the original GUI freezes,
and we cannot use it unless we close Putty. We tried using the fork()
command like this:
my $pid = fork()
if ( $pid == 0 ) {
System("C:\\Progra~1\\Putty\\putty.exe");
exit 0;
}
Now, if we run it, we can use the original GUI while Putty is running,
but when we close Putty, we get an error message along the lines of,
"The Perl Command Line Interpreter has stopped working" and the GUI
kills itself. Does anyone know what the problem might be, or how we
can launch Putty without freezing the GUI or causing it to kill itself
after closing Putty?
Thanks a lot.
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/