Number of character

S

Submit

HI,

I want to add a label to my form, it's contains the number of character that
user enter in a specific text box

each time the user enter a character the label value will increment by 1

is it possible ?

thanks
 
F

fredg

HI,

I want to add a label to my form, it's contains the number of character that
user enter in a specific text box

each time the user enter a character the label value will increment by 1

is it possible ?

thanks

Code the Change event of the control:

Me![LabelName].Caption = Len(Me![ControlName].Text)
 
Top