"soft return" chr code?

  • Thread starter Thread starter Kan D.
  • Start date Start date
K

Kan D.

What is the vba chr code for a "soft return"

aka Ctrl+Enter while entering text in a memo style text box?

chr(10) does not work

chr(13) does not work

Please Help

Kan.
 
Chr(13) & Chr(10), in that order.

There's an intrinsic constant vbCrLf that you can use in VBA as well (you
can't use it in queries)
 

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