Click to See Complete Forum and Search --> : MsgBox to long how can I change line


regis
February 10th, 2000, 09:33 AM
I would like to change line in MsgBox how can I do this


Thanks
Redg

Bert Smets
February 10th, 2000, 10:34 AM
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