ACC2: Query Generates "Field Length Is Too Long" Error MessageID: Q128114
|
Novice: Requires knowledge of the user interface on single-user computers.
When you reference a form memo field in a query using the syntax
Forms![Formname]![Controlname]
Field length is too long.
This behavior can occur if the memo field contains more than 255 characters. Microsoft Access assumes that the control being referenced in the query is a text field, rather than a memo field, and text fields are limited to 255 characters.
Reference the memo field indirectly by calling an Access Basic function in
the query that returns the field's contents. The following sample user-
defined function demonstrates how to reference a memo control indirectly:
Function My_Memo()
My_Memo = Forms![Formname]![Controlname]
End Function
This behavior no longer occurs in Microsoft Access version 7.0.
Microsoft Access "User's Guide," version 2.0, Appendix A, "Microsoft Access Specifications," page 707
Additional query words: query by form qbf
Keywords : kberrmsg kbusage QryAppnd
Version : 2.0
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: April 9, 1999