You could try the following code to invoke the default browser (applies to VB 6).
Place this at very top, but below the 'Option' declarations.
Private 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
Place this where 'Sub' are placed' This invokes the default browser to go to google.com.
Private Sub cmdBUTTON_Click()
ShellExecute 0&, vbNullString, "http://www.google.com", vbNullString, vbNullString, 10
End Sub
You could find information on the variables here .