How to add a breakline (FR Designer)

IvyIvy
edited 4:21PM in FastReport 3.0
Hello,
I want a separate line with a breakline . with #10, #13, #10#13, \n, \r\n it does not work.
how can it still work?

this is my code:
stext := test1 + #13 + test2;

Comments

  • edited 4:21PM
    Did yoy try combination #13#10 (not #10#13) ?
    procedure MasterData1OnBeforePrint(Sender: TfrxComponent);
    begin
      Memo2.Text := 'this is the first line' + #13#10 + 'and this is the second one';
    end;
    

    Mick

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.