How can I increase character length in my text boxes?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have finished my database in access and now that I have come to input I
have found that certain text boxes do not have enough room for more than a
certain number of characters. How do I go about changing this?
 
Go back into the table design and change the length in the bottom pane.
 
I have finished my database in access and now that I have come to input I
have found that certain text boxes do not have enough room for more than a
certain number of characters. How do I go about changing this?

Open the Table in design view and view the properties of this field. If you
can get by with 255 characters, just leave it as Text as the datatype and put
255 in the size field (Access doesn't store trailing blanks so this won't hurt
if you usually have fewer).

If you need more than 255 characters, change the datatype from Text to Memo.
That will give you 65536 characters (or over a billion if you load the data
programmatically).

John W. Vinson [MVP]
 
Many thanks!

John W. Vinson said:
Open the Table in design view and view the properties of this field. If you
can get by with 255 characters, just leave it as Text as the datatype and put
255 in the size field (Access doesn't store trailing blanks so this won't hurt
if you usually have fewer).

If you need more than 255 characters, change the datatype from Text to Memo.
That will give you 65536 characters (or over a billion if you load the data
programmatically).

John W. Vinson [MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top