VB.NET - Code Samples - Launch Browser From VB.net

VB.NET Launch Browser Function

Synopsis:

This handy snippet of code will open any file with it's associated program including launching URLS with the default browser. It may not work when the adminstrator of a network set the rights of a user so that they may not open webpages from programs other than the default browser.

The Code:

	Private Sub OpenURL(URL as String)
		System.Diagnostics.Process.Start("http://www.mredkj.com")
	End Sub
About this page: