Open Default Email Client

H

Hank

In Access 2003, How do I use a click event on a textbox that has an email
address in it to open the default email client ?
 
T

Tom van Stiphout

On Tue, 7 Apr 2009 17:42:01 -0700, Hank

In the Click event write:
Application.FollowHyperlink ("mailto:" & myTextBox.Value)
(replace myObjectNames with yours)

-Tom.
Microsoft Access MVP
 
Top