sure, the Textfield can only hold one line, no question about that fact
we did in 2017 a Building control App for a client.... on the MainForm we have a textfield for manual input of information, this field got enabled in the case of an security alert in the building triggered by an network message. They could insert text up to 20 chars. Now they came back and asked for full text input (fair enough). The problem is that we cannot change the layout anymore. We implemented some workaround like having the textfield for short inputs, double click on that one will open a form with an TextArea. Closing the form will copy the TextArea into the textfield, in that case we will loose cr/lf/crlf. Trying to use a TextArea instead of the text field fails because it is not possible to have a TextArea with a hight of 20. The idea was now to convert the cr/lf/crlf to a displayable special character and display one (long) line in the Textfield......
that's the problem, any ideas how to solve this ?