home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- #ifndef InfoH
- #define InfoH
- //----------------------------------------------------------------------------
- #include <vcl\System.hpp>
- #include <vcl\Windows.hpp>
- #include <vcl\SysUtils.hpp>
- #include <vcl\Classes.hpp>
- #include <vcl\Graphics.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\Buttons.hpp>
- #include <vcl\ExtCtrls.hpp>
- //----------------------------------------------------------------------------
- class TInfoBox : public TForm
- {
- __published:
- TButton *OKBtn;
- TPanel *Panel1;
- TLabel *Label1;
- TLabel *Label2;
- TLabel *Label3;
- TLabel *Label4;
- TLabel *Label5;
- TLabel *Label6;
- TLabel *Label7;
- TLabel *Label8;
- TLabel *FName;
- TLabel *FFormat;
- TLabel *FWidth;
- TLabel *FHeight;
- TLabel *FBits;
- TLabel *FDisk;
- TLabel *FMem;
- TLabel *FComp;
- private:
- public:
- virtual __fastcall TInfoBox(TComponent* AOwner);
- };
- //----------------------------------------------------------------------------
- extern TInfoBox *InfoBox;
- //----------------------------------------------------------------------------
- #endif
-