New Mail Message Link in Access Form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I'm using Outlook Express and Access XP. Is there a way to type
"(e-mail address removed)" into a field and have the form change it to
mailto:[email protected]? I would like to 'hyperlink' from an email
address to an actual New Mail Message, having the current email address
populate the To: field in the mail message. Any ideas are appreciated.

Thank you.
 
Hi Angie

Add the following code to the Click event of a command button or to the
DblClick event of the textbox:

Application.FollowHyperlink "mailto:" & Me.txtEmailAddress
 
WORKS LIKE A CHARM. THANKS!

Graham Mandeno said:
Hi Angie

Add the following code to the Click event of a command button or to the
DblClick event of the textbox:

Application.FollowHyperlink "mailto:" & Me.txtEmailAddress

--
Good Luck!

Graham Mandeno [Access MVP]
Auckland, New Zealand

Angie M. said:
Hi,

I'm using Outlook Express and Access XP. Is there a way to type
"(e-mail address removed)" into a field and have the form change it to
mailto:[email protected]? I would like to 'hyperlink' from an email
address to an actual New Mail Message, having the current email address
populate the To: field in the mail message. Any ideas are appreciated.

Thank you.
 

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

Similar Threads

E-Mail Addresses 0
Storing E-Mail Addresses in Access Tables 0
string functions 1
Send Mails 1
Email Not Set 3
Sending Mail 1
E-mail field coding 1
Creating a Email Message from Field 5

Back
Top