prova con la ShellExecute... devi dichiarare la funzione API in un form (o in un modulo rendendola Public) ed poi usarla, ad esempio, in un pulsante:
codice:
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 Command1_Click()
ShellExecute Me.hwnd, vbNullString, _
"mailto:tuacasella@tuoprovider.com?Subject=Questo è l'oggetto?&Body=Corpo del messaggio di posta", _
vbNullString, _
vbNullString, 0
End Sub
Boolean