home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Examples / Doc / OleCtnrs / ABOUT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-26  |  1.1 KB  |  32 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef aboutH
  7. #define aboutH
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. #include <ExtCtrls.hpp>
  14. //---------------------------------------------------------------------------
  15. class TAboutBox : public TForm
  16. {
  17. __published:
  18.     TPanel *Panel1;
  19.     TImage *ProgramIcon;
  20.     TLabel *ProductName;
  21.     TLabel *Version;
  22.     TLabel *Copyright;
  23.     TButton *OKButton;
  24. private:    // private user declarations
  25. public:     // public user declarations
  26.     virtual __fastcall TAboutBox(TComponent* Owner);
  27. };
  28. //---------------------------------------------------------------------------
  29. extern TAboutBox *AboutBox;
  30. //---------------------------------------------------------------------------
  31. #endif
  32.