Displaying multiline text in a text field
414976Jul 22 2005 — edited Jul 22 2005On a form I would like to display a message so I'm using a display field for this purpose. But the message is displayed on a single line. How to split the text in multi lines.
For example, on display field dp I'm displaying message "This is line1. This is line2". I would like this text to appear on the field as below :
This is line1
This is line2
I'm trying to use the below code in when-new-block-instance which is failing :
:block_name.dp := 'This is line1 '||chr(10)||'This is line2'
What I'm I doing wrong ?
Thanks