home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
-
- #include "BaseMod.h"
- //---------------------------------------------------------------------------
- #pragma resource "*.dfm"
- TBase *Base;
- //---------------------------------------------------------------------------
- __fastcall TBase::TBase(TComponent* Owner)
- : TForm(Owner)
- {
- }
- //---------------------------------------------------------------------------
- void __fastcall TBase::Button1Click(TObject *Sender)
- {
- Close();
- }
- //---------------------------------------------------------------------