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
Printable View
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
You can use the VB constant vbCrLf -- carriage return and line feed.
e.g.
MsgBox "Message" & vbCrLf & "Second line"