Click to See Complete Forum and Search --> : MessageBoxes


Lev FatMan
April 22nd, 2001, 06:31 AM
I know its a silly question,
But how do I implement eol in MessageBoxes.
I mean if I want to write something in 2 lines for instance.

FatMan

psiclone
April 22nd, 2001, 06:43 AM
You can use the VB constant vbCrLf -- carriage return and line feed.

e.g.

MsgBox "Message" & vbCrLf & "Second line"