Hi,
How many charecters can be kept in a Textbox. Its allowing me only 9 charecters, but i need to enter 12.
How to fix it.
I am using this textbox on access forms.
Open the table, find the field where the size isn't appropriate, change the size to something more fitting. Save the table.
Form controls doesn't always inherit changes in properties. If thats the situation, delete the old control, and add it again, from the Field list/add a new control and set the controlsource to the original field.
Long Integer fields take numbers/digits, not chars. Long integers, according to the help files (I just pressed F1 in the field size part for a field) can take numbers up to:
2 147 483 648
The "length limit" for long integer is 10 digits, providing the value is below the limit from the help files that I referred above. You wanted 12.
Simply choose another field size/datatype. If you are going to perform math on the field values, consider another numeric (Decimal?), if not, use text datatype with size 12.
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.