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

  1. //----------------------------------------------------------------------------
  2. #ifndef AboutH
  3. #define AboutH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\System.hpp>
  6. #include <vcl\Windows.hpp>
  7. #include <vcl\SysUtils.hpp>
  8. #include <vcl\Classes.hpp>
  9. #include <vcl\Graphics.hpp>
  10. #include <vcl\Forms.hpp>
  11. #include <vcl\Controls.hpp>
  12. #include <vcl\StdCtrls.hpp>
  13. #include <vcl\Buttons.hpp>
  14. #include <vcl\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.     TLabel *Comments;
  25.     TButton *OKButton;
  26. private:
  27. public:
  28.     virtual __fastcall TAboutBox(TComponent* AOwner);
  29. };
  30. //----------------------------------------------------------------------------
  31. extern TAboutBox *AboutBox;
  32. //----------------------------------------------------------------------------
  33. #endif    
  34.