Tutorials Navigation

Tutorials :: New :: Popular :: Top Rated

Tutorials: 18,326 Categories: 12

Total Tutorial Views: 41,369,151

[VB.NET] Opening external programs / Links

Tutorial Name: [VB.NET] Opening external programs / Links  

Category: PC Tutorials

Submitted By: PMSL

Date Added:

Comments: 1

Views: 1,039

Related Forum: PC Building Forum

Share:

Step 1 : Create a project and add 1 button

Step 2: Double click the button and type in :


system.diagnostics.process.start("")



Step 3 : In-between the speech marks enter your link
[ Register or Signin to view external links. ]


Thats it, now just run the tool and click the button.

If you want to run a program then in the speech marks, enter the Location of the program as shown below.

[ Register or Signin to view external links. ]

Ratings

Please take one second and rate this tutorial...

Not a Chance
1
2
3
4
5
6
7
8
9
10
Absolutely

Comments

"[VB.NET] Opening external programs / Links" :: Login/Create an Account :: 1 comment

If you would like to post a comment please signin to your account or register for an account.

MajPosted:

You're method is correct yes, however you're only supposed to use system.diagnostics when opening things such as CMD or Other system applications.

For regular applications, simply use Process.Start("Location")