C crow Registered User. Local time Today, 16:26 Joined Jan 10, 2005 Messages 22 Feb 8, 2005 #1 I have a form that has a textbox that equals an email address. Does anyone know how to send an email just by clicking on the textbox to activate your email client? Help would be much appreciated.
I have a form that has a textbox that equals an email address. Does anyone know how to send an email just by clicking on the textbox to activate your email client? Help would be much appreciated.
F fernin8r Registered User. Local time Today, 20:26 Joined May 28, 2002 Messages 142 Feb 8, 2005 #2 SendObject Add the following line to the OnClick procedure: DoCmd.SendObject acSendNoObject, , , Me.txt_email, , , "Email Subject" Substitute the txt_email with the name of the text box.
SendObject Add the following line to the OnClick procedure: DoCmd.SendObject acSendNoObject, , , Me.txt_email, , , "Email Subject" Substitute the txt_email with the name of the text box.
C crow Registered User. Local time Today, 16:26 Joined Jan 10, 2005 Messages 22 Feb 8, 2005 #3 Link to email in Textbox Thanks fernin8r: Works great!