I am totally new to Jscript...I come from a C# shop
With that said, I am trying to call a process in my script but it wont
compile. My C# code looks like this:
private System.Diagnostics.Process proc = new Process();
ProcessStartInfo info = new ProcessStartInfo
...do some work here
proc.StartInfo = info;
You probably get the point. How can I make this "go" in Jscript? I am
buying a freakin' manual this weekend, but until then...
Thanks
bruce barker - 16 Apr 2004 22:50 GMT
if you are trying this from javascript.net it looks like:
import System.Diagnostics;
var proc : Process = new System.Diagnostics.Process();
var info : ProcessStartInfo = new ProcessStartInfo();
proc.StartInfo = info;
if your trying this in client script, there is no support.
-- bruce
> I am totally new to Jscript...I come from a C# shop
>
[quoted text clipped - 13 lines]
>
> Thanks