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.
 
Top