Number of character

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

Guest

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
 
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)
 
Back
Top