aklisiewicz Active Member Licensed User Longtime User Jul 22, 2011 #1 I have a new with text (multiple lines). How can I break (LF) the line so the remaining text shows up in the next line ? Eample: This is line 1. This is line 2. I want this text to look like: This is line 1. This is line 2. Arthur
I have a new with text (multiple lines). How can I break (LF) the line so the remaining text shows up in the next line ? Eample: This is line 1. This is line 2. I want this text to look like: This is line 1. This is line 2. Arthur
klaus Expert Licensed User Longtime User Jul 22, 2011 #2 In the code, with an underscore character: B4X: This is line 1This is line 2 ' becomes This is line 1 _ This is line 2 In a text with CRLF B4X: txt = "This is linec1." & CRLF & "This is line 2." Best regards. Upvote 0
In the code, with an underscore character: B4X: This is line 1This is line 2 ' becomes This is line 1 _ This is line 2 In a text with CRLF B4X: txt = "This is linec1." & CRLF & "This is line 2." Best regards.