Line Brake in a Memo Field...

  • Thread starter Thread starter Peter
  • Start date Start date
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!
 
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.
 
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.
 
Back
Top