How do I code an e-mail address in an controls input mask?

  • Thread starter Row Autofit, cell formatting
  • Start date
R

Row Autofit, cell formatting

I need to code both the table field and a form control with an input mask
format, i.e. for example (e-mail address removed) The length before the @ symbol
can be different for each individual, but the seton.org will always be the
same.

I can't figure out how to write the input mask to do this. Can somebody that
has had more design help in this matter?
 
F

fredg

On Thu, 16 Jul 2009 20:10:01 -0700,
I need to code both the table field and a form control with an input mask
format, i.e. for example (e-mail address removed) The length before the @ symbol
can be different for each individual, but the seton.org will always be the
same.

I can't figure out how to write the input mask to do this. Can somebody that
has had more design help in this matter?

If the "@seton.org" part is always the same it's quite easy.
There is no need to include it in the field. Simply have the user
enter and save the value before the @, i.e. jblack.

Then, any time you wish to show the full email address, concatenate
the value
=[FieldName] & "@seton.org"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top