home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / QRLIST.PAS < prev    next >
Pascal/Delphi Source File  |  1996-05-08  |  771b  |  40 lines

  1. unit QRLIST;
  2.  
  3. // QuickReport simple list 
  4. // - Connect a datasource to the QuickReport component
  5. // - Put QRDBText components on the Detail band
  6.  
  7. interface
  8.  
  9. uses
  10.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  11.   Quickrep, StdCtrls, ExtCtrls;
  12.  
  13. type
  14.   TQRListForm = class(TForm)
  15.     QuickReport: TQuickReport;
  16.     Title: TQRBand;
  17.     PageHeader: TQRBand;
  18.     Detail: TQRBand;
  19.     PageNumber: TQRSysData;
  20.     PageFooter: TQRBand;
  21.     QRDateTime: TQRSysData;
  22.     QRSysData1: TQRSysData;
  23.     QRLabel1: TQRLabel;
  24.     QRLabel2: TQRLabel;
  25.     QRLabel3: TQRLabel;
  26.   private
  27.     { Private declarations }
  28.   public
  29.     { Public declarations }
  30.   end;
  31.  
  32. var
  33.   QRListForm: TQRListForm;
  34.  
  35. implementation
  36.  
  37. {$R *.DFM}
  38.  
  39. end.
  40.