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

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef instrH
  7. #define instrH
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. #include <ExtCtrls.hpp>
  14. //---------------------------------------------------------------------------
  15. class TAbout : public TForm
  16. {
  17. __published:    // IDE-managed Components 
  18.     TMemo *Memo1;
  19.     TLabel *Label1;
  20.     TButton *Button1;
  21. private:        // User declarations
  22. public:         // User declarations
  23.     virtual __fastcall TAbout(TComponent* Owner);
  24. };
  25. //---------------------------------------------------------------------------
  26. extern TAbout *About;
  27. //---------------------------------------------------------------------------
  28. #endif
  29.