home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / ObjRepos / MDIApp / ABOUT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-26  |  991 b   |  33 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef AboutH
  3. #define AboutH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\ExtCtrls.hpp>
  6. #include <vcl\Buttons.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Controls.hpp>
  9. #include <vcl\Forms.hpp>
  10. #include <vcl\Graphics.hpp>
  11. #include <vcl\Classes.hpp>
  12. #include <vcl\Windows.hpp>
  13. #include <vcl\System.hpp>
  14. //----------------------------------------------------------------------------
  15. class TAboutBox : public TForm
  16. {
  17. __published:
  18.     TPanel *Panel1;
  19.     TButton *OKButton;
  20.     TImage *ProgramIcon;
  21.     TLabel *ProductName;
  22.     TLabel *Version;
  23.     TLabel *Copyright;
  24.     TLabel *Comments;
  25. private:
  26. public:
  27.     virtual __fastcall TAboutBox(TComponent *Owner);
  28. };
  29. //----------------------------------------------------------------------------
  30. extern TAboutBox *AboutBox;
  31. //----------------------------------------------------------------------------
  32. #endif    
  33.