Hello

I am building a Windows application that, at some point, calls a separate process (a command line application). The latter takes quite some time to complete (about 5 minutes or more). How can I capture the console app's output in order to show it (in a textbox for instance) in my windows application?

Please note that I don't want the console app's whole output after it's completed. I want to capture its console output while it's producing it.

Thanks.