Open Url/Webpage in Default WebBrowser - VB 5.0/6.0
Saturday, April 19th, 2008
I figured this would be very easy to do since VB has a Shell command built-in. But I would keep getting a File not Found message everytime I would try and open a web address. It would work for other tasks like shelling "shutdown -r -f -t 0" which is a process that can be [...]
Popularity: 52% [?]
Open a URL/Webpage in the Default Web Browser - VB.NET
Sunday, June 17th, 2007
'Simply opens the default web browser and navigates to the specified url. This works with all versions of .NET including the latest 2005/08 versions.
Dim webAddress As String = "http://www.vbcodesource.com"
Process.Start(webAddress)
Popularity: 38% [?]
Popularity: 38% [?]
