hello,
I try to run a command line from vb with argument to RoboTask. Clearly, I want to get the result of my application in vb RoboTask.
Eric
Robotask object
Re: Robotask object
What result do you want to retrieve?
If you mean the output text of the utility the you can use the next command line:
cmd.exe /c myprogram.exe argument1 argument2 argument3 > c:\temp\output.txt
Command interpreter (cmd.exe) will catch the output of the utility and saves the output into text file.
If you mean the output text of the utility the you can use the next command line:
cmd.exe /c myprogram.exe argument1 argument2 argument3 > c:\temp\output.txt
Command interpreter (cmd.exe) will catch the output of the utility and saves the output into text file.
Oleg Yershov