frequently asked questions

All your questions in one place.

Carriage return in a large text

In various reports you can put large text boxes. As en example when you need to always print a certain message.

 

The Report Writer doesn't allow you to mix policies and font in the same text box, but a certain amount of formatting is feasible. As en example if you want to have some carriage returns at some point.

Examples

*/ Character that allows to perform a carriage return.

chr(10)

*/ Carriage return inserted to be begin a new line.

'Lorem ipsum dolor sit amet, vitae at iaculis metus amet.' + chr(10) + 'Porttitor dui et velit, tempor amet eum integer bibendum felis id, amet mauris, congue duis ante habitasse, felis tortor nonummy magna rutrum vel eget.'

*/ Carriage return inserted to have en empty line between two paragraphs.

'Lorem ipsum dolor sit amet, vitae at iaculis metus amet.' + chr(10) + chr(10) + 'Porttitor dui et velit, tempor amet eum integer bibendum felis id, amet mauris, congue duis ante habitasse, felis tortor nonummy magna rutrum vel eget.'

Did you find this article useful?

0 out of 0 found this helpful