execute .exe file
C#
3
Posts
3
Posters
0
Views
1
Watching
-
Use using
System.Diagnostics
NameSpace. Then useProcess
Class to Execute an Exe. eg:Process.Start("IExplore.exe")
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
If you need to pass some arguments to the exe file, here is an example
Process p = new Process();
ProcessStartInfo ps = new ProcessStartInfo();
p.StartInfo = ps;ps.FileName = "file.exe";
ps.Arguments = "Some commandline arguments";p.Start();
http://johanmartensson.se - Home of MPEG4Watcher http://www.tinywebradio.com - Home of TinyWebRadio