I have a 3rd party EXE. I just need to run this from my C# application.
My prime target is to copyright that 3rd party executable from my C# file..
Is there any better way to do this.?
How can I do this ?
Thank you
Menaka
I have a 3rd party EXE. I just need to run this from my C# application.
My prime target is to copyright that 3rd party executable from my C# file..
Is there any better way to do this.?
How can I do this ?
Thank you
Menaka
right click on ur project the solution explorer then add existing item select executable file in dialog box then go to your exe path and add your exe in your project.. then if u wanna start your exe on button click event then write this code its simple easy ...
add a method to access to your resource, which is also very simple, just add following code to your resource designer cs file
In your main executable source code, add following to read resource and write it to a new file
Use process to run the new executable file
One could write a simpler