First commit 11/12/1999

This commit is contained in:
2021-09-12 22:02:01 +02:00
commit 2f76ae2538
139 changed files with 8696 additions and 0 deletions

23
FormularioREUSABLE.cpp Normal file
View File

@ -0,0 +1,23 @@
//---------------------------------------------------------------------------
#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;
}
//---------------------------------------------------------------------------