Can you make paragraphs in a message box?

R

RJQMAN

I would like to have a message box with two paragraphs so that the
message is easier to read. Is there a way to force words to the next
line and/or skip lines in a message box? Thanks in advance.
 
D

Dave Peterson

msgbox "Hello" & vbnewline & "there"



I would like to have a message box with two paragraphs so that the
message is easier to read. Is there a way to force words to the next
line and/or skip lines in a message box? Thanks in advance.
 
L

L. Howard Kittle

And if you want to center it:

msgbox " Hello" & vbnewline & " there"

Adjust the spaces to suit.

HTH
Regards,
Howard
 
Top