MS Access 2007: Specify Max Length for TextBox on a Form

16,247

Solution 1

This should help you on your way

http://allenbrowne.com/ser-34.html

It covers if users paste into the box and lots of other ways making it very useful

Solution 2

You can use validation rules. Open the Property Sheet of the Form -> Tab 'Data' and fill out 'validation rule' with e.g.: Len([fieldname])<=42 Or Is Null

You can also add a 'validation text' like: "Maximum 42 chars allowed!"

Share:
16,247
jinsungy
Author by

jinsungy

Engineering Manager with Full-Stack Development experience in .NET, MS SQL Server.

Updated on July 28, 2022

Comments

  • jinsungy
    jinsungy almost 2 years

    How do I specify Max Length for TextBox on a Form?