home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
-
- #include "ResizeDialog.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- #pragma link "cdiroutl"
- #pragma link "cdiroutl"
- #pragma link "cdiroutl"
- #pragma resource "*.dfm"
- TForm1 *Form1;
- //---------------------------------------------------------------------------
- __fastcall TForm1::TForm1(TComponent* Owner)
- : TForm(Owner)
- {
- }
- //---------------------------------------------------------------------------
-
- void __fastcall TForm1::CancelBtnClick(TObject *Sender)
- {
- Close();
- }
- //---------------------------------------------------------------------------
- void __fastcall TForm1::FormCreate(TObject *Sender)
- {
- Constraints->MinWidth = ClientWidth - OKBtn->Left + 10;
- Constraints->MinHeight = ClientHeight - Bevel1->Top + 25;
- }
- //---------------------------------------------------------------------------
-
-