Put a label on your form named label1 and change the label caption to : Compose Mail --- or what ever you wish.
[CODE]
Option Explicit
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 label1_Click()
With label1
.Drag vbBeginDrag
End With
End Sub
Private Sub label1_DragDrop(Source As Control, X As Single, Y As Single)
If Source Is label1 Then
With label1
Call ShellExecute(0&, vbNullString, "Mailto:" & .Caption, vbNullString, vbNullString, vbNormalFocus)
End With
End If
End Sub
[/CODE]