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.
 
Back
Top