Is there a way to count how many characters are contained in a particular field? In other words, keep a running count of how many characters somebody has typed into a control? Would I use the instr function - or is there a more automated way?
If you want to keep a running count of the length, declare a form level integer variable... intRunningCount. Then, in the OnChange event of the textbox, set intRunningCount to Len(Me.txtMyTextBox.Text).
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.