meerkat
Newcomer
I'm using the Process class in VB.NET to launch a command line app. The app returns messages to the standard output and the standard error, which I have redirected to streams. The problem is that I want to display the output in the order it happened. For instance the app that I am running will write a line to the error and then some lines to the standard, then another line to the error and some more line to the standard. Is there a way that I can catch the line as it's written to the stream and display it? Thanks in advance.