I have an application that I run in the command prompt as follows:
C:\some_location>"myapplication.exe" headerfile.h
I want to create a Windows form application where the user can specify the location of the executable and also the header file so that the windows form can do this for him and the user wouldn't have to go to the command line and do it.
I'm very new to C#, so can anyone please help me out? Thank you!
https://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.useshellexecute.aspx
These link will provide you full information about .exe process Info.
another way that i used is
and it's working fine.
You need to use the
Process
class:For arguments:
Obviously you can pull these names/arguments from text boxes.
You can try with this code: