home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 August / VPR9708A.ISO / D3TRIAL / INSTALL / DATA.Z / QRLABELS.PAS < prev    next >
Pascal/Delphi Source File  |  1997-05-02  |  475b  |  30 lines

  1. { QuickReport master detail template }
  2.  
  3. unit qrlabels;
  4.  
  5. interface
  6.  
  7. uses
  8.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  9.   Qrctrls, quickrpt, DB, DBTables, ExtCtrls;
  10.  
  11. type
  12.   TQRLabelsForm = class(TQuickRep)
  13.     MasterTable: TTable;
  14.     DetailBand1: TQRBand;
  15.     QRLabel2: TQRLabel;
  16.   private
  17.     { Private 宣言 }
  18.   public
  19.     { Public 宣言 }
  20.   end;
  21.  
  22. var
  23.   QRLabelsForm: TQRLabelsForm;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. end.
  30.