Hyperlink

  • Thread starter Thread starter Saxman
  • Start date Start date
S

Saxman

One of the fields in my data base is a hyperlink where email addresses are
recorded. On execution it connects to the www. How do I get the hyperlink
to open up the default email client?

Thanks.
 
One of the fields in my data base is a hyperlink where email addresses are
recorded. On execution it connects to the www. How do I get the hyperlink
to open up the default email client?

Thanks.

I managed to solve my own problem! Right click on Hyperlink/Hyperlink/Edit
Hyperlink/Email Address.
 
I managed to solve my own problem! Right click on
Hyperlink/Hyperlink/Edit
Hyperlink/Email Address.
=======================================
Even better, in the double-click event for the email field,
add your version of this code...

DoCmd.SendObject acSendNoObject, , , Me!EmailName, , , _
"Saxman to " & Trim(Me!FirstName) & " " & Trim(Me!LastName), "Hi " &
Trim(Me!FirstName) & ",", True



..
 
Back
Top