Hyperlinked field to email (without writing "mailto:" in address)

A

alioops

We have a hyperlinked field which we use to click on to send an email to the
record's address. At the moment the only way we appear to be able to do this
is by typing "mailto:" before the actual address. Is there some other way of
doing this? Thankyou
PS: We're no experts here!
 
F

fredg

We have a hyperlinked field which we use to click on to send an email to the
record's address. At the moment the only way we appear to be able to do this
is by typing "mailto:" before the actual address. Is there some other way of
doing this? Thankyou
PS: We're no experts here!

Sure. Don't use a hyperlink field.
Use a regular text field instead.

Enter the email address as text, i.e.
(e-mail address removed)

On your form, code the Text Control's Double-click event:
Application.FollowHyperlink = "MailTo:" & Me![ControlName]

Editing the field is much easier (and inadvertently clicking in it
doesn't send the mail).
 

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