paragraph returns

A

Allen Browne

In the interface, just press Enter.
If that does not work, change the EnterKeyBehavior property of the text box.

In code, add a Carriage Return (Chr 13) and Line Feed (Chr 10) pair::

Me.MyTextbox = "Line1" & vbCrLf & "Line 2"
 
R

Rick

In my experience, pressing enter does not work, it moves you to the next
fied. But pressing CTRL+ENTER in a memo field will insert a carriage return
and line feed. No need for a bunch of code.

Rick
 

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

Top