An additional technique, is to use the following behind your command button
(presumes that the control on your form containing the email address is
named Email:
Dim strEmail As String
strEmail = "mailto:" & Me!Email
Application.FollowHyperlink address:=strEmail
Make sure that the field containing the email address is a Text field, as
opposed to a Hyperlink field.
--
Cheryl Fischer, MVP Microsoft Access
BT said:
Is there a way to insert a database field into email forms? I would like
to keep a customer's email address in the database record and press a button
that opens a new email message with the customer's email address already in
the "To:" field.