I'm using a large label control in a panel to display help files for the user to read. I would like to format each page with some carriage returns CHR(13) for easy reading. As I can't do this with a standard label control Eg. lblHelp.Text = "This is one line" & CHR(13) & "and this is the other line"
lblHelp.Text = "This is one line" & CRLF & "and this is the other line"
'or if you are an expert:
lblHelp.Text = $"This is one line
and this is the other line"$
There are better options for displaying large texts such as CLV.AddTextItem and the best is BBCodeView.