home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD 45
/
SuperCD45.iso
/
talleres
/
cplusplus
/
ResizeDialog.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
2000-05-29
|
1KB
|
32 lines
//---------------------------------------------------------------------------
#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;
}
//---------------------------------------------------------------------------