Computing.Net > Forums > Programming > running .exe file by C#

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

running .exe file by C#

Reply to Message Icon

Name: coolkang
Date: March 8, 2005 at 00:21:16 Pacific
OS: xp
CPU/Ram: 512
Comment:

hello helper
Does anybody know what object or library i need to use if i want to run the .exe file in c#. thank you



Sponsored Link
Ads by Google

Response Number 1
Name: Chi Happens
Date: March 9, 2005 at 09:54:10 Pacific
Reply:

huh?

You want to launch a process?

System.Diagnostics.Process

like this:
System.Diagnostics.Process Proc = new System.Diagnostics.Process();
Proc.StartInfo.FileName = "iexplore.exe";
Proc.Start();

hope this helps,
Chi

They mostly come at night...mostly


0
Reply to Message Icon

Related Posts

See More


C++ homework help Sql connection string VB6



Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Programming Forum Home


Sponsored links

Ads by Google


Results for: running .exe file by C#

runing .exe file using C++ code www.computing.net/answers/programming/runing-exe-file-using-c-code/5375.html

A batch file for rename www.computing.net/answers/programming/a-batch-file-for-rename/15479.html

reading excel file by c# www.computing.net/answers/programming/reading-excel-file-by-c/13034.html