• Recent Posts

  • Meta

  • Tags

    #ziplib .net getfilename .net no titlebar 7-zip adding a splash screen in visual basic.net adding textbox autocomplete addition adjusttokenprivileges adware application filename application position applications path audio library autocomplete autocomplete combobox avi mpg basic math bass.dll bass sound system beep benchmark data calculator cdrom tray change unix to windows directory exists disable beep on enter doevents excel file exists getinputstate high cpu usage linq mcisendstring no doevents open webpage pinging play mp3 play wave scroll textbox shell stop beep on enter textbox vb ping visual studio windows mci
  • 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 [...]

    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)