home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD 45 / SuperCD45.iso / talleres / cplusplus / ResizeDialog.h < prev   
C/C++ Source or Header  |  2000-05-29  |  1KB  |  32 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef ResizeDialogH
  3. #define ResizeDialogH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <Buttons.hpp>
  11. #include <Outline.hpp>
  12. #include "cdiroutl.h"
  13. #include <Grids.hpp>
  14. //---------------------------------------------------------------------------
  15. class TForm1 : public TForm
  16. {
  17. __published:    // IDE-managed Components
  18.         TButton *CancelBtn;
  19.         TButton *OKBtn;
  20.         TBevel *Bevel1;
  21.         TCDirectoryOutline *CDirectoryOutline1;
  22.         void __fastcall CancelBtnClick(TObject *Sender);
  23.         void __fastcall FormCreate(TObject *Sender);
  24. private:    // User declarations
  25. public:        // User declarations
  26.         __fastcall TForm1(TComponent* Owner);
  27. };
  28. //---------------------------------------------------------------------------
  29. extern PACKAGE TForm1 *Form1;
  30. //---------------------------------------------------------------------------
  31. #endif
  32.