How can I get the Text from a (shelled) DOS-box so I can manipulate this text in my VB program ?
------------------
Printable View
How can I get the Text from a (shelled) DOS-box so I can manipulate this text in my VB program ?
------------------
When you Shell the DOS Program pass the output Swtich to Direct all Screen Output to a File, which you can then Open and Display in a Textbox, ie.
Call Shell("C:\Shell.bat > C:\Output.txt", vbNormalFocus)
------------------
Aaron Young
Analyst Programmer
[email protected]
[email protected]
Aaron, what means ">" in the line ?
The ">" is the Html equivalent of the Greater Than ">" symbol.