Using Multiple Lines in a MsgBox

Alternatively:

Visual Basic:
messagebox.show("First Line" & ControlChars.CrLf & "Second Line")
 
Back
Top