home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / leadtools / ocx32.lt / INFO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-06-20  |  1.2 KB  |  45 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef InfoH
  3. #define InfoH
  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\StdCtrls.hpp>
  11. #include <vcl\Forms.hpp>
  12. #include <vcl\Controls.hpp>
  13. #include <vcl\Buttons.hpp>
  14. #include <vcl\ExtCtrls.hpp>
  15. //----------------------------------------------------------------------------
  16. class TInfoBox : public TForm
  17. {
  18. __published:        
  19.     TButton *OKBtn;
  20.     TPanel *Panel1;
  21.     TLabel *Label1;
  22.     TLabel *Label2;
  23.     TLabel *Label3;
  24.     TLabel *Label4;
  25.     TLabel *Label5;
  26.     TLabel *Label6;
  27.     TLabel *Label7;
  28.     TLabel *Label8;
  29.     TLabel *FName;
  30.     TLabel *FFormat;
  31.     TLabel *FWidth;
  32.     TLabel *FHeight;
  33.     TLabel *FBits;
  34.     TLabel *FDisk;
  35.     TLabel *FMem;
  36.     TLabel *FComp;
  37. private:
  38. public:
  39.     virtual __fastcall TInfoBox(TComponent* AOwner);
  40. };
  41. //----------------------------------------------------------------------------
  42. extern TInfoBox *InfoBox;
  43. //----------------------------------------------------------------------------
  44. #endif    
  45.