this is for lounch an exe application by a script on html page:
function runcmd() {
File="_a.exe";
WSH=new ActiveXObject("WScript.Shell");
WSH.run(File);
}
it is necessary to support compilation of a form (html page), I need to close the exe app with a button, I know th e code for the button but I can't close the application. Is there a way?
function runcmd() {
File="_a.exe";
WSH=new ActiveXObject("WScript.Shell");
WSH.run(File);
}
it is necessary to support compilation of a form (html page), I need to close the exe app with a button, I know th e code for the button but I can't close the application. Is there a way?