MsgBox Question

  • Thread starter Thread starter Ray Batig
  • Start date Start date
R

Ray Batig

If you use the following convention:

title = " xxxxx"
msg = " yyyyyy"
DialogStyle = .......
Response = ........

What can you insert in the msg prompt to cause it to wrap to a new line? I
would like to get three lines if possible. If this is not possible, is there
a work around?

Thanks in advance for your help!

Ray
 
Use the vbCr (carriage return) to wrap lines as eg.....

Msgbox "Text1" & vbCr & _
"Text2" & vbCr & _
"Text3"

Cheers
N
 
Back
Top