Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Max Lenght in a Text Box!!!!!!!!!!!!!!!!

Status
Not open for further replies.

Gti

Programmer
Jul 23, 2001
99
PT
How can i determine the max lenght in a text box in vba!!
In vb is easy but in access i can't find the command to do it


Any help?

Tkx

;-)
 
If you mean, is there a way to find the number of characters in the text box, yes. There's a
Code:
TextLength
property for the Textbox. Just use
Code:
MyTextBox.TextLenth
and it'll give you back the number of characters in the textbox.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top