H
Hareth
For C#, to access an internet page i usually type:
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents = false;
proc.StartInfo.FileName = "iexplore";
proc.StartInfo.Arguments = "http://www.website.com";
proc.Start();
proc.WaitForExit();
I tried doing this for a network share, but it doesnt work....can someone
tell me a fast code like this one.
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents = false;
proc.StartInfo.FileName = "iexplore";
proc.StartInfo.Arguments = "http://www.website.com";
proc.Start();
proc.WaitForExit();
I tried doing this for a network share, but it doesnt work....can someone
tell me a fast code like this one.