TextBox Validation

  • Thread starter Thread starter Rohit Thomas
  • Start date Start date
R

Rohit Thomas

Hello,

I have a textbox in which the user must enter a valid date
using the following format: YYMMDD. For example, if the
date is 04/11/04, the user inputs 040411. What expression
do I need to put in the Validation Rule property of the
textbox to do this? Any ideas would be appreciated.

Thanks,
Rohit Thomas
 
I think you will need to build up yr own validation rule.
There's no Out-of-the-box validation rule you can apply in this scenario.

I would certainly advise to use an inputmask (such as: 999999;_)
in conjunction with yr validation rule

Krgrds,
Perry
 
Back
Top