Counting Characters in a Textbox

D

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
 
F

fredg

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
 
Top