I have .exe that will be ran in DOS mode. I know how to get the commandline that was used to run it how do I output text to the DOS shell. Something like cout for C++ except for VB.
Thanks for the help.
Raistlin
Printable View
I have .exe that will be ran in DOS mode. I know how to get the commandline that was used to run it how do I output text to the DOS shell. Something like cout for C++ except for VB.
Thanks for the help.
Raistlin
Dim wshShell
Set wshShell = CreateObject("WScript.Shell")
wshShell.run "Command /K dir c:\*.*", 1, True
That will DOS Dir command
Iouri Boutchkine
[email protected]