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 >
C/C++ Source or Header  |  1997-02-14  |  1KB  |  27 lines

  1. //---------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4.  
  5. #include "QRLabels.h"
  6. //---------------------------------------------------------------------
  7. #pragma resource "*.dfm"
  8. TQRLabelsForm *QRLabelsForm;
  9. //--------------------------------------------------------------------- 
  10. // QuickReport Mailing Labels template
  11. // - Connect the QuickReport component to a datasource
  12. // - Connect the QRDBText components to the datafields
  13. // - Set number of columns with the QuickReport->Columns property (default=3)
  14. // - Adjust the initial vertical positioning with the height of the page
  15. //   header band
  16. // - Adjust the vertical spacing with the height of the Detail band
  17. // - Adjust the initial horizontal positioning with the QuickReport->LeftMargin
  18. //   property
  19. // - Adjust the horizontal spacing with the QuickReport->ColumnMarginMM or
  20. //   ColumnMarginInches properties
  21. //--------------------------------------------------------------------- 
  22. __fastcall TQRLabelsForm::TQRLabelsForm(TComponent* AOwner)
  23.     : TForm(AOwner)
  24. {
  25. }
  26. //--------------------------------------------------------------------- 
  27.