Pleeeaasse... ASAP
-
Hi all... I have an
.html
file that should run an.exe
file that is located where the.html
file is located. I tried in PerlScript like this:sub MyButton1_onClick
{
system("MyFile.exe arg1 arg2");
}And my Internet Explorer gets stuck...
Please
ASAP -
Hi all... I have an
.html
file that should run an.exe
file that is located where the.html
file is located. I tried in PerlScript like this:sub MyButton1_onClick
{
system("MyFile.exe arg1 arg2");
}And my Internet Explorer gets stuck...
Please
ASAP -
The .exe file is a cosole application that does nothing exept of a print screen... but i tried to run "notepad.exe" and it works. do you have any idea on how to run a console application ?? BTW: I know 2 commands to run an .exe in perl: system() and exec(); --- the system() returns the application exit code, so it needs that the application will exit [there for, the PerlScript waits for the system() tio finisih]; the other one (exec()), it runs the application in another thread, there for, do not return the exit code. there for, the PErlScript continues. ************* Still needs help