get rid of error msg when inputmask i set

  • Thread starter Thread starter Jesper F
  • Start date Start date
J

Jesper F

I have a field with an input mask like 000000-0000
If the user enters 0 or alle characters input is accepted but if any number
of characters in between 0 and 10 is entered it raises the error: "The value
you entered isn't appropriate for the input mask...".

Is there a way to have the input mask but not get the error if the user
leaves the field?
 
The requirement of "0" is:
Digit (0 to 9, entry required, plus [+] and minus [-] signs not allowed).

If you use 9, the requirement is:
Digit or space (entry not required, plus and minus signs not allowed).
(From the Help file)

Place the cursor in the Input Mask box and press the F1 key. You will get
information on what the different input mask characters do.
 
The requirement of "0" is:
Digit (0 to 9, entry required, plus [+] and minus [-] signs not allowed).

If you use 9, the requirement is:
Digit or space (entry not required, plus and minus signs not allowed).
(From the Help file)

Place the cursor in the Input Mask box and press the F1 key. You will get
information on what the different input mask characters do.

Yes off course. Thanks.
 
Back
Top