I hope this is an easy question. I need to be able to enter the entry of characters in a text box on a form to 250 characaters. Is there an easy way to do this? I thought about the Input Mask. Do I have to enter 250 C's into the custom one?
cghoga's suggestion will work perfectly if the textbox is bound to a field in a table. If you're using unbound controls, you'll need to do a bit of coding. Something like this:
Private Sub MyTextBox_AfterUpdate
Dim strA as String
Thanks for the quick reponse. The information entered into the text box is actually used to build an SQL statement that is run via a Pass Through query. So, I think I will try the coding way.
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.