Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

email link in a form 1

Status
Not open for further replies.

RexS

Technical User
Joined
Jan 28, 2002
Messages
2
Location
US
From within a form in Access 2000, is there a way to click on an email address that has been entered that will automatically bring up a mail window to send an email to the selected person without typing in the email address?
 
If you add a DblClick event to the field containing the email address, you can put the following coding in the event procedure:

Private Sub EmailAddress_DblClick()
DoCmd.SendObject acSendNoObject, , acFormatHTML, Me.EmailAddress
End Sub

This will automatically bring up your email client with the email address already filled in.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top