Eljay
Elite Member
    

:O
Posts: 2946 Reputation: 77
– / / –
Joined: May 2004
|
RE: Capture output of launched external application?
code: var Shell = new ActiveXObject('WScript.Shell');
var oExec = Shell.Exec("C:\\myprogram.exe");
Debug.Trace(oExec.StdOut.ReadAll());
|
|