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

  • Thread starter Thread starter Row Autofit, cell formatting
  • Start date 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?
 
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"
 
Back
Top