با این کد میتونید مرورگر پیشفرض رو تشخیص داده و ادرس سایتتون رو باز کنید

Declarations:

'used for shelling out to the default web browser | softAfzar.Net
Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Public Const conSwNormal = 1

Code:

ShellExecute hwnd, "open", "http://www.vbcode.com", vbNullString, vbNullString, conSwNormal