How do I change a text box to have unlimited text?

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

Guest

I have a form that someone else created that contains a text box. The
current text box only allows a limited amount of text in it. I need it to
have unlimited text. Can someone tell me how to change the text box for that?

Thank You!

Lauren
 
PTLauren said:
I have a form that someone else created that contains a text box. The
current text box only allows a limited amount of text in it. I need it to
have unlimited text. Can someone tell me how to change the text box for that?

You don't change the TextBox. You change the DataType of the field in the table
that the control is bound to (to Memo).
 
It is probably the field to which the text box is bound. If the field's data
type is Text, then there will be a specific character limit specified in the
table design view (maximum of 255 characters). You can change it to Memo,
which, while not exactly unlimited, does increase the limit to 65,535
characters.
 

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