G
Gerry
Can someone tell me how to insert a carriage return into a memo field?
Thanks much!!!
Thanks much!!!
Can someone tell me how to insert a carriage return into a memo field?
Thanks much!!!
Under what circumstances?
During keyboard data entry?
1) Ctrl + Enter will add a new line during data entry
or ...
Set the control's Enter Key Behavior property to New Line in Field.
Then just hit the Enter key to add a new line during entry.
Using Code?
Me.MemoField = Me.MemoField + chr(13) & chr(10) & "This is new text."
fredg said:Oops.. That should have been:
Me.MemoField = Me.MemoField & chr(13) & chr(10) & "This is new text."