exe |
| sundar k replied to sambath kumar at 03-Jul-08 03:10 |
You dont have to add the exe to your project to run it from your project if my understanding of your requirement is right, just execute the exe using Process.Start method which will invoke the exe from your c# code and it will run seperately. For ex., to start iexplore.exe you would call as,
' Start Internet Explorer. Defaults to the home page. Process.Start("IExplore.exe")
|
|