Instead of spawning a separate command window as a child window, is it possible to host a command console as a child control of a form?
Example:
Instead of spawning a separate command window as a child window, is it possible to host a command console as a child control of a form?
Example:
It is not possible to display the actual console window inside a form, but you can redirect the output of the console to your app and display it in your own control.
Have a look at this question which has some examples. Also on MSDN I found this and this.