新建From1(窗体),新建Command1(按钮CommandButton),代码:
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpoperation As String, ByVal lpfile As String, ByVal lpparaments As String, ByVal lpdirectory As String, ByVal nshowcmd As Long) As Long
Private Sub Command1_Click()
    Call ShellExecute(0&, vbNullString, "http://manongku.com", vbNullString, vbNullString, 1)
End Sub