home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Objrepos / qrlabels.pas < prev    next >
Pascal/Delphi Source File  |  1999-08-11  |  469b  |  29 lines

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