Msgbox

K

kennyken

Hi

I have a message box that pops up under certain conditions . At presen
the text on this box is on long line . Is it possible to start some o
the message on a new line where I specify

Thank
 
D

DNF Karran

MsgBox "abc" & Chr(13) & "abc"

The chr(13) gives [enter] so starts the new line.

Dunca
 
L

L. Howard Kittle

And in case you did't know, you can add spaces to center the message if you
want. Something like this.

MsgBox " abc" & Chr(13) & " def"

HTH
Regards,
Howard
 
Top