I am developing an application that works as a graphical interface for Minecraft Server (works as a Java console application).
I finished it, and I also want to add a console inside the Winforms application, because I want to give users more control over the program. But using threads (Process.StandardOutput), I can not imitate the console, because it sometimes changes the cursor position, clears the console, etc.
So, I want to somehow implement the process into the application. The first solution I tried was to remove the borders and their location according to the position of the form, but, unfortunately, I could not do this.
Any useful code snippets are welcome!
c #
user1286744
source share