How to add a breakline (FR Designer)

IvyIvy
edited 10:45PM 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 10:45PM
    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