Opening other programs with C#
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hello, is it possible with C# to open up the user's default internet browser and take it to a certain web page? I would like it to open it outside the program (if you understand). If you can do this, is it possible to open any program?
Take a look at the
Process.Start
method. To open a URL in the default browser simply typeProcess.Start("http://www.codeproject.com");
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook