Thanks for your fast response, but I still can't make it
work.
I have the the following code:
MsgBox "A message to the world."
If I change it to three lines:
MsgBox_
_"A message"_
_"to the world."
It's not working. What should I do?
I could be wrong, but I think what you want is a 'carriage return' in the text of your message box
It would look like this
MsgBox "A message" & Chr(13) & "to the world!
The displayed message box would look like
A messag
to the world
Use Rob's instruction when the VBA code line
gets longer than you want to fit
into the window and you don't want to have to use the horizontal scroll bar to see how the entire line reads
just to understand it
Rick..
----- Howard wrote: ----
Rob
Thanks for your fast response, but I still can't make it
work.
I have the the following code
MsgBox "A message to the world.
If I change it to three lines
MsgBox
_"A message"
_"to the world.
It's not working. What should I do
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.