VB Code:
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
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
HoverLabel Label1, "E-mail Me", False, vbBlack
End Sub
Private Sub Label1_Click()
End Sub
Private Sub Label1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
End Sub
Private Sub HoverLabel(LBL As Label, strText As String, FontUnderline As Boolean, FontColor As ColorConstants)
With LBL
.Caption = strText
.Font.Underline = FontUnderline
.ForeColor = FontColor
End With
End Sub