Textbox & MaxLength

EndersG

Registered User.
Local time
Today, 19:31
Joined
Feb 18, 2000
Messages
84
Does Access 2000 have the MaxLength property for its textboxes? For example, if I want to limit the number of characters you can type in the textbox to 10, shouldn't it be as simple as Me.TextBox1.MaxLength = 10 (like in VB6). Or is MS Access limited in this regard.

Thanks for sharing.
 
Hello:
Access has a FieldSize property that you can set in table design. Or you can use the BeforeUpdate event to test for a string length using the Len function.
'
Regards
Mark
 

Users who are viewing this thread

Back
Top Bottom