running another program...

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Hector Y. Martinez

    running another program...

    Hi:

    I can't remember now... how can I run an external program from my app ???

    Thanx in advantage

    --
    "The best way to predict the future, is to invent it"
  • Cor Ligthert

    #2
    Re: running another program...

    Something like this
    \\\
    System.Diagnost ics.Process p =
    new System.Diagnost ics.Process();
    System.Diagnost ics.ProcessStar tInfo pi =
    new System.Diagnost ics.ProcessStar tInfo();
    pi.FileName = "http://www.google.com" ;
    p.StartInfo = pi;
    p.Start();
    ///

    It can much shorter however to give you a more complete idee

    I hope this helps,

    Cor


    Comment

    Working...