Hi All,
I m working on a windows application, and i want to show some status messages at command prompt while executing the windows application, how can i do that
cmd.exe can be run through windows code.but i don know how to show some message at command prompt or if there is any way to do somthing like "console.writeline("Message")" through windows application.
Thanks....
Kirtan PatelPosted Apr 20, 2009, 8:51 AM
p.StartInfo.FileName="cmd.exe";
p.StartInfo.Arguments="/c echo Hello Welcome to C#";
p.StartInfo.CreateNoWindow = true;
p.Start();
Happy Coding :)