I am making a .NET application that I need to run the windows command prompt within that application.
Is this possible? If yes then how?
I need to make something that looks like the image shown below:
I am making a .NET application that I need to run the windows command prompt within that application.
Is this possible? If yes then how?
I need to make something that looks like the image shown below:
Take a look at the System.Diagnostics.Process class. Start cmd with this class and redirect the Streams. Then you can draw a bitmap with a white font and show it to the user.
Anyway, like Ramhound i would directly show the command prompt.