home *** CD-ROM | disk | FTP | other *** search
- {*************************************************}
- {* QuickReport for Delphi *}
- {* Demo Report MDRep *}
- {* *}
- {* Shows how to create master/detail reports *}
- {* using the OnNeedData event, plus how to use *}
- {* the QRDBCalc component *}
- {*************************************************}
-
- unit Mdrep;
-
- interface
-
- uses
- SysUtils, Windows, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls, Quickrep, DB, DBTables, ExtCtrls, Buttons, Spin,
- Grids, DBGrids;
-
- type
- TMDForm = class(TForm)
- MDRep: TQuickReport;
- Title: TQRBand;
- CustomerHeading: TQRBand;
- QRDBText1: TQRDBText;
- QRLabel3: TQRLabel;
- QRLabel4: TQRLabel;
- QRDBText3: TQRDBText;
- QRDBText4: TQRDBText;
- QRLabel5: TQRLabel;
- QRDBText5: TQRDBText;
- CustomerFooter: TQRBand;
- QRDBCalc1: TQRDBCalc;
- QRLabel7: TQRLabel;
- PageFooter: TQRBand;
- QRSysData1: TQRSysData;
- Summary: TQRBand;
- Detail: TQRBand;
- QRDBText2: TQRDBText;
- QRDBText7: TQRDBText;
- QRDBCalc2: TQRDBCalc;
- QRLabel6: TQRLabel;
- QRLabel15: TQRLabel;
- Image1: TImage;
- QRLabel1: TQRLabel;
- QRLabel16: TQRLabel;
- QRDetailLink1: TQRDetailLink;
- Orderlines: TQRBand;
- QRDetailLink2: TQRDetailLink;
- QRDBText8: TQRDBText;
- QRLabel2: TQRLabel;
- QRLabel8: TQRLabel;
- QRDBText12: TQRDBText;
- QRDBText13: TQRDBText;
- QRDBText14: TQRDBText;
- QRDBText16: TQRDBText;
- QRLabel17: TQRLabel;
- QRShape1: TQRShape;
- QRLabel18: TQRLabel;
- QRShape2: TQRShape;
- QRLabel19: TQRLabel;
- QRShape3: TQRShape;
- QRLabel20: TQRLabel;
- QRShape4: TQRShape;
- OrderSummary: TQRBand;
- QRShape5: TQRShape;
- QRLabel21: TQRLabel;
- QRDBCalc3: TQRDBCalc;
- QRLabel9: TQRLabel;
- QRLabel10: TQRLabel;
- QRDBCalc4: TQRDBCalc;
- QRDBCalc5: TQRDBCalc;
- QRLabel11: TQRLabel;
- QRDBCalc6: TQRDBCalc;
- QRLabel12: TQRLabel;
- QRDBCalc7: TQRDBCalc;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- MDForm: TMDForm;
-
- implementation
-
- uses Datasets;
-
- {$R *.DFM}
-
- end.
-