Counting Characters in a Textbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to count the number of characters in a textbox?

I have a textbox that must have 4 characters in it, if the users enters text
in it. It can be null or must have 4 characters.

Thanks in advance!

Dwight
 
Is there a way to count the number of characters in a textbox?

I have a textbox that must have 4 characters in it, if the users enters text
in it. It can be null or must have 4 characters.

Thanks in advance!

Dwight

IsNull([FieldName]) or Len([FieldName])=4
 
Back
Top