G Guest Apr 20, 2007 #1 my memo field will not allow characters past 257 characters when typing in data from a form, why won't it?
my memo field will not allow characters past 257 characters when typing in data from a form, why won't it?
M M Skabialka Apr 20, 2007 #2 Are you sure you defined the field as memo, and not text with a limit of 255 characters? Mich
G Guest Apr 20, 2007 #3 1. Are you really, really sure that it's a memo field and not a text field? I had to ask. 2. Is there some strange validation rule at either table or form level? 3. Is the form based on a query or directly on the table? If on a query, try basing a form directly on the table. 4. Are you using any functions like UCase on the memo field?
1. Are you really, really sure that it's a memo field and not a text field? I had to ask. 2. Is there some strange validation rule at either table or form level? 3. Is the form based on a query or directly on the table? If on a query, try basing a form directly on the table. 4. Are you using any functions like UCase on the memo field?
G Guest Apr 20, 2007 #4 yep, the ">" in the form field, took it out and it's ok, but id rather have it in... the form is based off the query, ....
yep, the ">" in the form field, took it out and it's ok, but id rather have it in... the form is based off the query, ....
P Peter Hibbs Apr 20, 2007 #5 Add this code to the KeyPress event. KeyAscii = Asc(UCase(Chr(KeyAscii))) which converts all text to upper case as you enter it. Peter Hibbs.
Add this code to the KeyPress event. KeyAscii = Asc(UCase(Chr(KeyAscii))) which converts all text to upper case as you enter it. Peter Hibbs.