vb has the shell command what does c# have?
Printable View
vb has the shell command what does c# have?
What exactly are you trying to do? If your trying to start another app, try this:
Code:sFile = @"C:\theappyouwant.exe";
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents=false;
proc.StartInfo.FileName = sFile;
proc.Start();
thats exactly what i wanted thanks:D