CtrlMstr/FormularioREUSABLE.cpp
2021-09-12 22:02:01 +02:00

24 lines
744 B
C++

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "FormularioREUSABLE.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "CoolForm"
#pragma resource "*.dfm"
TFormREUSABLE *FormREUSABLE;
//---------------------------------------------------------------------------
__fastcall TFormREUSABLE::TFormREUSABLE(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TFormREUSABLE::Button1Click(TObject *Sender)
{
ModalResult = mrCancel;
}
//---------------------------------------------------------------------------