27 lines
874 B
C++
27 lines
874 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#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;
|
|
}
|
|
//---------------------------------------------------------------------------
|