F Fergus Cooney Oct 23, 2003 #2 Hi Vincent, Dim sYourCommand As String = "Vincent.exe" Process.Start ("cmd.exe", "/c " & sYourCommand) For more command-line options, you can go to a Dos Box and type cmd /? Regards, Fergus
Hi Vincent, Dim sYourCommand As String = "Vincent.exe" Process.Start ("cmd.exe", "/c " & sYourCommand) For more command-line options, you can go to a Dos Box and type cmd /? Regards, Fergus
H Herfried K. Wagner [MVP] Oct 23, 2003 #3 * "Vincent said: In the VB.net program, I want to launch a dos program. What can I do ? Click to expand... You can start the executable with 'System.Diagnostics.Process.Start'.
* "Vincent said: In the VB.net program, I want to launch a dos program. What can I do ? Click to expand... You can start the executable with 'System.Diagnostics.Process.Start'.