I am very familiar with VBA for Excel and thus I am used to the command vbnewline
. It creates a line break between two ampersands.
Sub Test_LB_msgbox
msgbox("Test" & vbnewline & _
"some more text" & vbnewline & _
"asdf")
End Sub
However in Basic this command (obviously) does not work. So far I have been unsuccessful to find “vbnewline”'s equivalent in Basic. Is there one?