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.
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.
msgbox "Hello" & vbnewline & "there"
RJQMAN@AOL.COM wrote:
>
> 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.
--
Dave Peterson
And if you want to center it:
msgbox " Hello" & vbnewline & " there"
Adjust the spaces to suit.
HTH
Regards,
Howard
<RJQMAN@AOL.COM> wrote in message
news:1145318770.355362.291990@u72g2000cwu.googlegroups.com...
>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.
>
Thanks a lot...
You can also use:
Msgbox "Hello" & vbCrLf & "there"
or
Msgbox "Hello" & chr(13) & "there"
<RJQMAN@AOL.COM> escribió en el mensaje
news:1145318770.355362.291990@u72g2000cwu.googlegroups.com...
>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.
>
Thanks to everybody - all the solutions worked well.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks