home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / INSTR.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-03  |  910 b   |  28 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef instrH
  3. #define instrH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TAbout : public TForm
  12. {
  13. __published:    // IDE-managed Components 
  14.     TMemo *Memo1;
  15.     TLabel *Label1;
  16.     TMemo *Memo2;
  17.     TImage *Image1;
  18.     TLabel *Label2;
  19.     TButton *Button1;
  20. private:        // User declarations
  21. public:         // User declarations
  22.     virtual __fastcall TAbout(TComponent* Owner);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern TAbout *About;
  26. //---------------------------------------------------------------------------
  27. #endif
  28.