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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top