I have created an exe to be called from the commandline. I would like to send any errors generated by this exe to the standard error stream so the data can be retrieved by the calling Exec object. What do I need to do to send this information?
This is the calling code.
Careful. We don't want to learn from this. -- Calvin
This is the calling code.
Code:
Set oExec = oShell.Exec(test.exe)
oExec.StdErr.ReadAll
Careful. We don't want to learn from this. -- Calvin