3

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:

alt text

Nathan Ridley
  • 32,688
  • 32
  • 118
  • 193

1 Answers1

5

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.

Community
  • 1
  • 1
Alex McBride
  • 6,771
  • 3
  • 30
  • 30