email link on form

T

Tripp

With a field on a form whose control source =
emailaddress, is it possible to click on that email
address and open a new email with the field's contents
listed in the send to box?
 
A

Al Campagna

Tripp,
Use the SendObject function. If your field is called EmailAddress, and
contains [email protected], you can use the double click to initiate an email
to that person.
DoCmd.SendObject , , , EmailAddress
will open your default email program with [email protected] as the To:
 
Top