M
Mr. X.
How can I in code (VB.NET 2008) execute another executable program ?
Thanks
Thanks
How can I in code (VB.NET 2008) execute another executable program ?
Thanks
How can I in code (VB.NET 2008) execute another executable program ?
What is the difference between process.start and shell?
One problem.
I did : process.start("myprog.exe")
but when returning the calling program, and trying do something I got
the message :
Unhandled exception has occurred in your application.
If you click Continue, the application will ignore this error and
attempt to continue ...
Cor Ligthert said:It has even more options, one of those is waitforexit but in your case
probably better to get the output content using the reader.
Have a look at those to get some examples
http://www.vb-tips.com/StartProcess.aspx
Cor
Well,
Thanks
I will check this out.
Thanks
- Show quoted text -
Well,
Thanks
I will check this out.
Thanks
- Show quoted text -
... and about shell and process.start.
by command "shell" I can wait till I close the executable program (it
may be a modal dialog), and process.start doesn't have this option.
Besides, "shell" cannot send to the executable program arguments, and
process.start can.