J John de Murga Member Licensed User Longtime User Jan 8, 2011 #1 I am sure I am missing something obvious here ... But how do I do this ? I tried "\n" and & chr(13) &, but I can't seem to force breaks in the body text of my msgBox.
I am sure I am missing something obvious here ... But how do I do this ? I tried "\n" and & chr(13) &, but I can't seem to force breaks in the body text of my msgBox.
Erel B4X founder Staff member Licensed User Longtime User Jan 8, 2011 #2 You should use CRLF constant: "first line" & CRLF & "second line" CRLF = chr(10) 'we are in Unix world... Upvote 0
You should use CRLF constant: "first line" & CRLF & "second line" CRLF = chr(10) 'we are in Unix world...