aproctorpe001
Registered User.
- Local time
- Today, 07:30
- Joined
- Nov 19, 2001
- Messages
- 17
I have a control on a form that contains email addresses. I've set the field as a hyperlink data type and what I want to do is to be able to click the address and automatically open up my mail file with a new memo with the 'To:' field populated. I've used the following piece of code:
Dim StrInput As String
StrInput = "mailto:" & Me![E-mail Address]
Application.FollowHyperlink StrInput, , True
Indeed it opens up my mail file but also does the following:
1. Opens up the addressee's company website.
2. Populates the 'To:' field with the following:
To:<EmailName>#http://<EmailName>#
How can I rectify this?
Dim StrInput As String
StrInput = "mailto:" & Me![E-mail Address]
Application.FollowHyperlink StrInput, , True
Indeed it opens up my mail file but also does the following:
1. Opens up the addressee's company website.
2. Populates the 'To:' field with the following:
To:<EmailName>#http://<EmailName>#
How can I rectify this?