deirdre said:
in access i am trying to make a input mask for email address does anyone have
one?
You can't. An input mask is a VERY limited tool; it is simply not
sophisticated enough to validate an email address. To do so you'll need to
write some VBA code for use in the BeforeUpdate event of a textbox, to check
that the string contains an @ sign, at least one period after the @, and no
illegal characters such as blanks (although in some systems an address such
as
"John Hancock"@continental_congress.org
would in fact be legal.
It's not a trivial task!
John W. Vinson/MVP