Line Brake in a Memo Field...

P

Peter

Hi all, i will most probably be branded the most stupide around here :) but
i can not "linebrake" in my nice big memo field..simple as that..thanks!
 
D

Douglas J. Steele

If you're trying to do it using code, it would be something like:

Me!MyMemoField = "This is line one." & vbCrLf & "This is line two."

If you're trying to do it by typing into the field, check the text box's
EnterKeyBehavior property. If you set it to New Line In Field, hitting Enter
will move you to a new line. Otherwise, you need to use Ctrl-Enter.
 
P

Peter

Thanks Douglas, works perfectly!

Douglas J. Steele said:
If you're trying to do it using code, it would be something like:

Me!MyMemoField = "This is line one." & vbCrLf & "This is line two."

If you're trying to do it by typing into the field, check the text box's
EnterKeyBehavior property. If you set it to New Line In Field, hitting Enter
will move you to a new line. Otherwise, you need to use Ctrl-Enter.
 

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

Similar Threads

Arranging text in a memo field 2
MEMO Field cut off on Form 3
validation rules avoid line brake 9
Memo Field Limits??? 5
columns in memo field 2
Memo Field 3
Scrolling in Memo Field 3
Memo Field 4

Top