First commit 07/07/2002

This commit is contained in:
2021-09-12 20:55:27 +02:00
commit 3a630dba1d
16 changed files with 1109 additions and 0 deletions

26
SerieCfg.cpp Normal file
View File

@ -0,0 +1,26 @@
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "SerieCfg.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TSerieConf *SerieConf;
//---------------------------------------------------------------------------
__fastcall TSerieConf::TSerieConf(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TSerieConf::cancelarClick(TObject *Sender)
{
ModalResult = mrCancel;
}
//---------------------------------------------------------------------------
void __fastcall TSerieConf::aceptarClick(TObject *Sender)
{
ModalResult = mrOk;
}
//---------------------------------------------------------------------------