Is it possible to make multiple text lines in labels, buttons ... usign designer or designer script (something like "aaaa" & CRLF & "bbbb" in programm)?
text....<CTRL-RETURN>line2<CTRL-RETURN>line3
Dim EOL As String
EOL = Chr(13) & Chr(10) 'CRLF constant matches Android end of line character which is chr(10).
button1.text = "line1"&EOL&"line2" 'should work