-2

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:

http://imgur.com/4sEen

Kevin Bedell
  • 12,994
  • 10
  • 75
  • 113
divanshu
  • 25
  • 4

2 Answers2

1

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.

teamalpha5441
  • 691
  • 1
  • 6
  • 19
0

Use Process.Start:

Process.Start("cmd.exe");
Ria
  • 9,816
  • 3
  • 31
  • 58