home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / BMPDLG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-20  |  979 b   |  30 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef BmpdlgH
  3. #define BmpdlgH
  4. //---------------------------------------------------------------------------
  5. #include <Forms.hpp>
  6. #include <ExtCtrls.hpp>
  7. #include <Controls.hpp>
  8. #include <Classes.hpp>
  9. #include <StdCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TNewBMPForm : public TForm
  12. {
  13. __published:
  14.         TButton *OKBtn;
  15.         TButton *CancelBtn;
  16.         TBevel *Bevel1;
  17.         TLabel *Label1;
  18.         TEdit *WidthEdit;
  19.         TLabel *Label2;
  20.         TEdit *HeightEdit;
  21.  
  22. private:        // private user declarations
  23. public:         // public user declarations
  24.     virtual __fastcall TNewBMPForm(TComponent* Owner);
  25. };
  26. //---------------------------------------------------------------------------
  27. extern TNewBMPForm *NewBMPForm;
  28. //---------------------------------------------------------------------------
  29. #endif
  30.