Try something like this:
MsgBox "This is the first line" & vbcrlf & _
"And this is the second line."
Try something like this:
MsgBox "This is the first line" & vbcrlf & _
"And this is the second line."
Or, this...
Sub test()
MsgBox "This is the first line" & Chr(13) & _
"And this is the second line."
End Sub
Sub test2()
MsgBox "This is the first line" & Chr(13) & _
"" & Chr(13) & "And this is the second line."
End Sub
Or, this...
Sub test()
MsgBox "This is the first line" & Chr(13) & _
"And this is the second line."
End Sub
Sub test2()
MsgBox "This is the first line" & Chr(13) & _
"" & Chr(13) & "And this is the second line."
End Sub
Thanks guys. Vbcrlf is what i was looking for.
Thanks for the assistance