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.
 

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


Back
Top