For instance:
"C:\MyProgram.exe" option1 option2 option3
I'm trying to do this within a form
I've tried this method but can't pass any arguments, can only execute the program without options:
Now If I do this:
It cannot open the program at all.
"C:\MyProgram.exe" option1 option2 option3
I'm trying to do this within a form
I've tried this method but can't pass any arguments, can only execute the program without options:
Code:
filename = "C:\MyProgram.exe"
System.Diagnostics.Process.Start(filename)
Now If I do this:
Code:
filename = "C:\MyProgram.exe option1 option2"
System.Diagnostics.Process.Start(filename)
It cannot open the program at all.