home *** CD-ROM | disk | FTP | other *** search
- unit QRLABELS;
-
- // QuickReport Mailing Labels template
- // - Connect the QuickReport component to a datasource
- // - Connect the QRDBText components to the datafields
- // - Set number of columns with the QuickReport.Columns property (default=3)
- // - Adjust the initial vertical positioning with the height of the page
- // header band
- // - Adjust the vertical spacing with the height of the Detail band
- // - Adjust the initial horizontal positioning with the QuickReport.LeftMargin
- // property
- // - Adjust the horizontal spacing with the QuickReport.ColumnMarginMM or
- // ColumnMarginInches properties
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- Quickrep, StdCtrls, ExtCtrls;
-
- type
- TQRLabelsForm = class(TForm)
- QuickReport: TQuickReport;
- PageHeader: TQRBand;
- Detail: TQRBand;
- QRLabel1: TQRLabel;
- NameField: TQRDBText;
- AddressField1: TQRDBText;
- AddressField2: TQRDBText;
- AddressField3: TQRDBText;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- QRLabelsForm: TQRLabelsForm;
-
- implementation
-
- {$R *.DFM}
-
- end.
-