Email Mask

  • Thread starter Thread starter Ronald
  • Start date Start date
R

Ronald

I would like to mask a fild so that only email address can
be entered.

in access i can only find masks for telephone numbes and
post codes but not for an email address, please help

thanks
 
I would like to mask a fild so that only email address can
be entered.

in access i can only find masks for telephone numbes and
post codes but not for an email address, please help

Input masks are simply not capable of the flexibility required. They
are fixed length, for one thing.

It's even difficult to write VBA code to reliably parse EMail
addresses, given the wide variety of valid ID's and domain names.
About the best you can do is make sure that there are no blanks and
exactly one @.
 
Back
Top