Email with outlook by click on emailadres

P

Pat Belgium

If I write a email adres in a Excel cell, automaticaly
a hyperlink to mentioned mailadres is made and function
by simple click.
In Access :
If I try to change properties of a form cell or
in contentstabel in Access2000 to hyperlink,
I only get a connection with "http:internet etc...",
how to make such a cell working to connect directly
to outlook newmessage as it functions in Excel ???

Many thanks in advance, for a not to complicated answer.
 
P

Pat

we allready found the answer, thanks anyway

Private Sub E_Mail_DblClick(Cancel As Integer)
If Me.e_mail.Value <> "" Then
Application.FollowHyperlink "mailto:" & Me.e_mail
End If
End Sub
 
Top