home *** CD-ROM | disk | FTP | other *** search
- unit DemoReport;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- DB, DBTables, StdCtrls, Quickrep, ExtCtrls;
-
- type
- TFormReport = class(TForm)
- BtnRun: TButton;
- procedure BtnRunClick(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- FormReport: TFormReport;
-
- implementation
-
- uses DemoReportDef;
-
- {$R *.DFM}
-
- procedure TFormReport.BtnRunClick(Sender: TObject);
- begin
- FormReportDef.Qry.Active:= True;
- FormReportDef.Rpt.Preview;
- end;
-
- end.
-