home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
-
- #include "QRLabels.h"
- //---------------------------------------------------------------------
- #pragma resource "*.dfm"
- TQRLabelsForm *QRLabelsForm;
- //---------------------------------------------------------------------
- // 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
- //---------------------------------------------------------------------
- __fastcall TQRLabelsForm::TQRLabelsForm(TComponent* AOwner)
- : TForm(AOwner)
- {
- }
- //---------------------------------------------------------------------
-