Might be stupid Access Question

  • Thread starter Thread starter Jose Esteves
  • Start date Start date
J

Jose Esteves

okay I just need to know how I can make a email input
mask. I wanna be able to only accept the input in an email
format ie (e-mail address removed) any help would be gladly
appreciated
 
okay I just need to know how I can make a email input
mask. I wanna be able to only accept the input in an email
format ie (e-mail address removed) any help would be gladly
appreciated

It's surprisingly difficult, given the wide variety of valid EMail
address formats. (e-mail address removed), (e-mail address removed),
etc. - counting periods will not work. With some fairly elaborate code
you can check for the presence of an @ and the absence of blanks or
special characters, but it's perhaps more work than it's worth (since
a valid *format* does not guarantee a valid *address* anyway!)
 
Back
Top