emailing

P

please help me

Using Access 2000

I have a form that upon selecting a name from a drop down list displays all
relevant information for that name. One of the fileds it displays is email
address.

I would like to insert a button into the form that when it is clicked will
open up Outlook with the email address displayed on the form in the to box.

Is this possible?
 
R

rowiga

In the OnClick event for the command button put:

DoCmd.SendObject acSendNoObject,,,[MyEmailFieldName]
 
Top