Create a module
Then add the following code:
Option Explicit
Public Const email = "support@online.com"
Public Const URL = "http://blog.csdn.net/flm2003"
Public 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 SW_SHOWNORMAL = 1
Public Sub gotoweb ()
Dim Success As Long
Success = ShellExecute (0 &, vbNullString, URL, vbNullString, "C:", SW_SHOWNORMAL)
End Sub
Public Sub sendemail ()
Dim Success As Long
Success = ShellExecute (0 &, vbNullString, "mailto:" & email, vbNullString, "C:", SW_SHOWNORMAL)
End Sub
Then it's easy!
In the form you want to perform a hyper-connection, for example, implementing a LABEL hyper-connection
Add gotoweb or sendemail to the label click event!