I would like to change line in MsgBox how can I do this
Thanks
Redg
Printable View
I would like to change line in MsgBox how can I do this
Thanks
Redg
Hi,
You can use multiple lines in a message box by using "vbCrLf". There's an example beneath.
MsgBox "This is the first line." & vbCrLf & "This is the second line."
Bert