Is it possible to display the command window inside the window form?

Instead of expanding a separate command window as a child window, is it possible to place the console as a child form control?

Example:

alt text

+3
source share
1 answer

It is not possible to display the actual console window inside the form, but you can redirect the console output to your application and display it in your own control.

Check out this question for a few examples. Also on MSDN, I found this and this .

+4
source

Source: https://habr.com/ru/post/1768207/


All Articles