Can I create my report in runtime?

Hi, everybody!

I need create my report in runtime, using Delphi, to print barcodes, to define size, heigth and others details. I'm used the Rave Reports for this, in Delphi 7, but, now, I need make my reports using Fast Report.

Help me please, dears.



att,
Andr?© Rosa @ Brazil.

Comments

  • gpigpi
    edited 7:44AM
    See a Developer's manual "1.12 Creating a report form from code" chapter
  • edited 7:44AM
    Great, I found the answer. [img]style_emoticons/<#EMO_DIR#>/wink.gif" style="vertical-align:middle" emoid=";)" border="0" alt="wink.gif" /> For example:[/img]
    var
      BarCode : TfrxBarCodeView;
    begin
          BarCode     := frxReport.FindObject('BarCodeOnReport') as TfrxBarCodeView;
          BarCode.Text:= '555';
    end;
    

Leave a Comment