email link on form

  • Thread starter Thread starter Tripp
  • Start date Start date
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?
 
Tripp,
Use the SendObject function. If your field is called EmailAddress, and
contains (e-mail address removed), you can use the double click to initiate an email
to that person.
DoCmd.SendObject , , , EmailAddress
will open your default email program with (e-mail address removed) as the To:
 
Back
Top