How do I read a console apps output as it is running. I start the console application and would like to read the output as it is printed by the console app.
|
|
What about this solution. EDIT: the link leads to this solution (lightly refactored for legibility and to remove use of
|
||||||||||||
|
|
|
You can re-direct the output to a disk file which you can then read as required. |
||
|
|
|
|
You can always just run the application from the command prompt. |
||||
|
|
|
I usually use this ported FPC code: http://www.stack.nl/~marcov/processdelphi.zip It contains a class to control external programs (it is the class used by Lazarus to call the cmdline compiler and other programs). Documentation is here, but the delphi port is a bit old, so not all documented properties might exist in the above version. |
||
|
|
