Skip to main navigation Zum Hauptinhalt springen Skip to page footer
pascal
 1unit ReportForm;
 2
 3interface
 4
 5uses
 6  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls,
 7  Vcl.Forms, Vcl.Dialogs, DataModule, Data.DB, Vcl.Grids, Vcl.DBGrids, Data.Win.ADODB, Vcl.StdCtrls, Vcl.ExtCtrls,
 8  TL.Components, RLReport, RLParser;
 9
10type
11  TfrmReport = class(TLForm)
12    RLReportAftrekpostenIB: TRLReport;
13    RLBandHeader: TRLBand;
14    RLSystemInfoDate: TRLSystemInfo;
15    RLLabelHeaderTekst: TRLLabel;
16    RLBandFooter: TRLBand;
17    RLSystemInfoPageNo: TRLSystemInfo;
18    RLGroupSubcategorie: TRLGroup;
19    RLBandSubCategorie: TRLBand;
20    RLDBTextSubcategorie: TRLDBText;
21    RLBandDetail: TRLBand;
22    RLDBTextDatum: TRLDBText;
23    RLDBTextNaamTegenpartij: TRLDBText;
24    RLDBTextOmschrijving_1: TRLDBText;
25    RLDBTextBedrag: TRLDBText;
26    RLBandSubcategorieTotaal: TRLBand;
27    RLDBResultSubCategorie: TRLDBResult;
28    RLBandCategorieTotaal: TRLBand;
29    RLDBResultTotaalGeneraal: TRLDBResult;
30    RLLabelTotaal: TRLLabel;
31  private
32    { Private declarations }
33  public
34    { Public declarations }
35  end;
36
37var
38  frmReport: TfrmReport;
39
40implementation
41
42{$R *.dfm}
43
44end.
45