Hi, I don't speak english very well but I need an information.
For run an external application I do this:
code:
var objShell = new ActiveXObject("Shell.Application");
objShell.ShellExecute('C:\app.exe');
But my application must be execute with some parameters... I write this:
code:
var objShell = new ActiveXObject("Shell.Application");
objShell.ShellExecute('C:\app.exe param1 param2');
but the function return error because search the 'C:\app.exe param1 param2' file that don't exist naturally.
Do someone help me, please?