I keep getting this error:
"The text is too long to be edited"
Everytime I paste long html code into a textbox.
G37SAM, I suggest you look at your tables and not the forms. Which field on what table are you updating? Go to the tables in edit mode and look at the field, if the
Data Type is
Text you can increase the field size up to 255 characters; however, it looks like you might need to use a
Memo Data Type. Be careful when use this
Data Type there are certain limitations in the amount of text you are able to export to Excel, for instance.
This is from the Access 2003 Help File:
Setting
Text
Type of data
(Default) Text or combinations of text and numbers, as well as numbers that don't require calculations, such as phone numbers
Size
Up to 255 characters or the length set by the FieldSize property, whichever is less. Microsoft Access does not reserve space for unused portions of a text field.
Setting
Memo
Type of data
Lengthy text or combinations of text and numbers.
Size
Up to 65,535 characters. (If the Memo field is manipulated through DAO and only text and numbers [not binary data] will be stored in it, then the size of the Memo field is limited by the size of the database.)
I hope this helps you.