home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 February / Chip_2004-02_cd1.bin / program / delphi / navody / d56 / ec1vr2.exe / #setuppath# / CB6 / MultiLevelHeader / ABOUT.H < prev    next >
Encoding:
C/C++ Source or Header  |  2003-12-09  |  968 b   |  33 lines

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