Emails

D

deiopajw

I have a field for entering email addresses.
I would like to be able to click on an existing email address in this field
and then Outlook Express to open up with the message box containing the
email address in the To: section of the message box.
Thanks for any help.
 
D

Dennis

In the On Mouse Up event of your Field (called EMailField in my example) put
this code (Look up help for the SendObject command)

DoCmd.SendObject acSendNoObject,,,[EMailField] .......
 
Top