Starting an application within a dot.net application

  • Thread starter Thread starter Halldor
  • Start date Start date
H

Halldor

Greetings all,

This must be very simple but I've been searching for too
long for the answer. How can I for example start a
program like notepad from my c# windows application? The
application in question is an old dos application which I
would need to have some control over how it starts. Like
it's priority and how much memory it get's.
Any suggestions would be very welcomed.

Thanks
Halldor
 
Take a look at System.Diagnostics.Process() and
System.Diagnostics.ProcessStartInfo() classes. I think they can do what you
want.

HTH

Yves
 
Back
Top