textbox maximum character limitation -workarounds

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

Guest

Hello

I wonder if anyone can help.

I need my users to post comments via my form into my database, however there
appears to be a restriction on the number of characters that can be added to
the cell in my table.

Is there a way around this at all?

Any comments would be most welcome

Much appreciated


Nick
 
there
appears to be a restriction on the number of characters that can be added to
the cell in my table.

There are no "cells" in tables - that's for prisons, and for Excel
spreadsheets. There are fields, however.

A Text field is limited to 255 characters. Open the table in design view (not
the form but the table); select this field; and change its datatype to Memo.
Be sure there is nothing in the field's Format property (or you'll be back to
255); otherwise this will let you type 65536 characters.

John W. Vinson [MVP]
 
In addition to John's response ... the 64k limit is the text box limit,
however, you can append WAY more text to a memo via code. You are only
limited by the size of you database.
 

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