home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / TEXTLIST.H < prev    next >
C/C++ Source or Header  |  1997-02-28  |  2KB  |  45 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef TextListH
  7. #define TextListH
  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. #include <vcl\System.hpp>
  16. #include <iostream.h>
  17. #include <fstream.h>
  18. #include <stdlib.h>
  19. #include <stdio.h>
  20. //---------------------------------------------------------------------------
  21. class TTextRep : public TForm
  22. {
  23. __published:    // IDE-managed Components 
  24.     TQRBand *QRBand1;
  25.     TQRLabel *QRLabel1;
  26.     TQRBand *QRBand2;
  27.     TQRSysData *QRSysData3;
  28.     TQRSysData *QRSysData1;
  29.     TQRSysData *QRSysData2;
  30.     TQRBand *QRBand3;
  31.     TQRLabel *QRLabel2;
  32.     TQuickReport *Rep;
  33.     void __fastcall RepAfterPrint(TObject *Sender);
  34.     void __fastcall RepBeforePrint(bool &PrintReport);
  35.     void __fastcall RepNeedData(bool &MoreData);
  36. private:        // User declarations
  37. FILE *aFile;
  38. public:         // User declarations
  39.     virtual __fastcall TTextRep(TComponent* Owner);
  40. };
  41. //---------------------------------------------------------------------------
  42. extern TTextRep *TextRep;
  43. //---------------------------------------------------------------------------
  44. #endif
  45.