hi, i have a standard text field in a report like:
'Hello Mr. XYZ, u have x positions open.'
what i want is a new line after the comma. i tried:
- 'Hello Mr. XYZ, ' + '\' + ' u have x positions open.'
>> no result, means it handles it as a string
- 'Hello Mr. XYZ, ' + 'CrLf' + ' u have x positions open.'
>> no result, means it handles it as a string
>> how do i solve this?
thx
0
Comments
http://www.BiloBeauty.com
http://www.autismspeaks.org
thx
Another text box with MultiLine Property (Use this property to tell the system if a label or text box can display multiple lines of text inside a single text box or label.) set to yes.
But I don't think you can force your own line breaks with this method and you will have to expand your text box hight & width to accomodate the text.
http://www.BiloBeauty.com
http://www.autismspeaks.org
thx
vChar := 10;
newtext := 'Dear Mr SoandSo'+FORMAT(vChar)+'How are you doing?';
Still setting the multiline to yes.
http://www.BiloBeauty.com
http://www.autismspeaks.org