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

  1. unit QRLABELS;
  2.  
  3. // QuickReport Mailing Labels template
  4. // - Connect the QuickReport component to a datasource
  5. // - Connect the QRDBText components to the datafields
  6. // - Set number of columns with the QuickReport.Columns property (default=3)
  7. // - Adjust the initial vertical positioning with the height of the page
  8. //   header band
  9. // - Adjust the vertical spacing with the height of the Detail band
  10. // - Adjust the initial horizontal positioning with the QuickReport.LeftMargin
  11. //   property
  12. // - Adjust the horizontal spacing with the QuickReport.ColumnMarginMM or
  13. //   ColumnMarginInches properties
  14.  
  15. interface
  16.  
  17. uses
  18.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  19.   Quickrep, StdCtrls, ExtCtrls;
  20.  
  21. type
  22.   TQRLabelsForm = class(TForm)
  23.     QuickReport: TQuickReport;
  24.     PageHeader: TQRBand;
  25.     Detail: TQRBand;
  26.     QRLabel1: TQRLabel;
  27.     NameField: TQRDBText;
  28.     AddressField1: TQRDBText;
  29.     AddressField2: TQRDBText;
  30.     AddressField3: TQRDBText;
  31.   private
  32.     { Private declarations }
  33.   public
  34.     { Public declarations }
  35.   end;
  36.  
  37. var
  38.   QRLabelsForm: TQRLabelsForm;
  39.  
  40. implementation
  41.  
  42. {$R *.DFM}
  43.  
  44. end.
  45.