A quick one: Start a new line in a message box?

A

Allen Browne

In code:
MsgBox "Line1" & vbCrLf & "Line 2"

In contexts where the constant is available, spell out the Carriage Return
and Line Feed characters:
"Line1" & Chr(13) & Chr(10) & "Line2"
 
S

scubadiver

How about leaving a space between two lines? Like


Hello, my name is John

Pleased to meet you!
 
Top