home *** CD-ROM | disk | FTP | other *** search
- unit DemoReportDef;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- Quickrep, DB, DBTables, StdCtrls, ExtCtrls;
-
- type
- TFormReportDef = class(TForm)
- QRBand1: TQRBand;
- QRDBText1: TQRDBText;
- QRDBText2: TQRDBText;
- QRBand2: TQRBand;
- QRLabel1: TQRLabel;
- QRLabel2: TQRLabel;
- Qry: TQuery;
- Src: TDataSource;
- Rpt: TQuickReport;
- QryPers_ID: TAutoIncField;
- QryPers_LastName: TStringField;
- QryPers_FirstName: TStringField;
- QryPers_Remarks: TMemoField;
- QryPers_Birthday: TDateTimeField;
- QryPers_IsFemale: TBooleanField;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- FormReportDef: TFormReportDef;
-
- implementation
-
- {$R *.DFM}
-
- end.
-