home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / LABELREP.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  1KB  |  41 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef LabelrepH
  7. #define LabelrepH
  8. //---------------------------------------------------------------------------
  9. #include <vcl\Classes.hpp>
  10. #include <vcl\Controls.hpp>
  11. #include <vcl\StdCtrls.hpp>
  12. #include <vcl\Forms.hpp>
  13. #include <vcl\QuickRep.hpp>
  14. #include <vcl\ExtCtrls.hpp>
  15. //---------------------------------------------------------------------------
  16. class TLabelForm : public TForm
  17. {
  18. __published:    // IDE-managed Components 
  19.     TQuickReport *Rep;
  20.     TQRBand *QRBand1;
  21.     TQRDBText *QRDBText1;
  22.     TQRDBText *QRDBText2;
  23.     TQRLabel *Addr1Label;
  24.     TQRLabel *Addr2Label;
  25.     TQRBand *QRBand2;
  26.     TQRLabel *QRLabel1;
  27.     TQRSysData *QRSysData1;
  28.     TQRBand *QRBand3;
  29.     TQRLabel *QRLabel2;
  30.     TQRLabel *QRLabel3;
  31.     TMemo *Memo1;
  32.     void __fastcall QRBand1BeforePrint(bool &PrintBand);
  33. private:        // User declarations
  34. public:         // User declarations
  35.     virtual __fastcall TLabelForm(TComponent* Owner);
  36. };
  37. //---------------------------------------------------------------------------
  38. extern TLabelForm *LabelForm;
  39. //---------------------------------------------------------------------------
  40. #endif
  41.