Probem with text box input

  • Thread starter Thread starter AM
  • Start date Start date
A

AM

Dear all

I have an Access database problem!

I would like to create an unlimited amount of characters in a particular
text box, but at the moment it is limited to 50 characters.

How can I change this to be able to type in any amount of text?

Many thanks
 
Dear all

I have an Access database problem!

I would like to create an unlimited amount of characters in a particular
text box, but at the moment it is limited to 50 characters.

How can I change this to be able to type in any amount of text?

Many thanks

Change the Text field in the table to
Field Size 255

A Text datatype's maximum size is 255 characters

or...

Change the field in the table to Memo Datatype
A Memo datatype's size is 65000+ characters.
 
Back
Top