Text field contains email address

G

Guest

I am using Access 2003 to create a specialized Contact Manager for ads that
we do at differenent times of the year. One of the fields contains the email
address for the contact that we are dealing with. Is there a way set the
field up so when you double click on it, Outlook will start up with the email
address in "To" and preset text in the subject area? Any help would be very
much appreciated.
 
S

Steve Schapel

H Godwin,

You could try code like this on the Dbl Click event...
DoCmd.SendObject , , , Me.Email, , , "Your Subject Text", , True
(replace Email with the name of your email address textbox)
 
G

Guest

Thank you - this worked great.
Is there a similar command to do the same thing if you had the url address
for a website in a text field and wanted to double click on it?
I really appreciate your assistance.
 
S

Steve Schapel

H Godwin,

One way to do this is go to the design of the table, and set this field
as a Hyperlink data type.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top