Limiting character type

  • Thread starter Thread starter H. Martins
  • Start date Start date
H

H. Martins

How do I limit the character types entered in a textbox?

Say, I want to accept as valid characters numbers, letters and '-'
only.

Could that be limited in the table itself?

Thanks
Henry
 
H. Martins said:
How do I limit the character types entered in a textbox?

Say, I want to accept as valid characters numbers, letters and '-'
only.

Could that be limited in the table itself?


Yes. Set the field's Validation Rule to:

Is Null Or Not Like "*[!-0-9a-z]*"
 
Back
Top