naveen kumar
how you can open another process in c#?
By naveen kumar in .NET on Jun 05 2009
  • AMEY DESHPANDE
    Jun, 2009 16

    you have to use the process and processstartinfo class which can be found in System.Dignostics nameplace

    Here is the sample code

    using System.Diagnostics;

    process p=new process();

    p.startinfo.FileName="mspaint" //or path of any exe the current wil start a ms paint processs

    p.start();

    write this code behind buttton click event

    • 0
  • naveen kumar
    Jun, 2009 13

    ya i have to open the process in my own application.

    • 0
  • Prasoon
    Jun, 2009 11

    Can you clarify if you want to open(start) another process through your own Application (which depends on your role level ) or do you want to access an running process ?

    Clarification will be well appreciated ..

    Regards
    Prasoon

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS