This should be easy - how do you execute a DOS prompt command in code in a Windows Application?
I want to call an exe from my windows app using the dos prompt.
Thanks.
Printable View
This should be easy - how do you execute a DOS prompt command in code in a Windows Application?
I want to call an exe from my windows app using the dos prompt.
Thanks.
You might be able to Shell it. Otherwise you could have the app write a batch file withthe commands and then delete it after they execute.
Good idea about the batch file! I didn't even think about that!
Thanks.