Hi!
You can use the following code in the Change event procedure:
If Len(YourTextBox.Text) > YourLimit Then
Call MsgBox("You cannot add any more characters")
YourTextBox.Text = Left(YourTextBox.Text, YourLimit)
End If
If you do something like this, make sure the user knows about the limit and I would add a lable at the top of the text box that I use the Change event procedure to update with the current length of the text box.
hth
Jeff Bridgham
bridgham@purdue.edu