Email address field by default

Tiffini

Registered User.
Local time
Today, 13:51
Joined
Feb 13, 2004
Messages
20
Does anyone know how to make a field default to an email address rather than a hyperlink to a web page? I don't want the user to have to physically go to the edit hyperlink everytime they enter an email address.

Thanks,
Tiffini
 
You can put this line in the OnCurrent event of the form.

Me.YourTxtBoxName.Value = "TheEmailAddressHere"

Col
 
ColinEssex said:
You can put this line in the OnCurrent event of the form.

Me.YourTxtBoxName.Value = "TheEmailAddressHere"

Col


The field is a data entry field, so how do I handle future data entry?
 
I have the field in a table set to hyperlink...but it doesn't default to email...it defaults to a web page. I need to know if there is a way to set the property to default to an email instead.
 

Users who are viewing this thread

Back
Top Bottom