home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 May
/
VPR9705A.ISO
/
VPR_DATA
/
PROGRAM
/
CBTRIAL
/
SETUP
/
DATA.Z
/
QRLABELS.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-14
|
1KB
|
27 lines
//---------------------------------------------------------------------
#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)
{
}
//---------------------------------------------------------------------