24 lines
727 B
C++
24 lines
727 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#include <vcl.h>
|
|
#pragma hdrstop
|
|
|
|
#include "ListInit.h"
|
|
//---------------------------------------------------------------------------
|
|
#pragma package(smart_init)
|
|
#pragma resource "*.dfm"
|
|
TAcercaDe *AcercaDe;
|
|
//---------------------------------------------------------------------------
|
|
__fastcall TAcercaDe::TAcercaDe(TComponent* Owner)
|
|
: TForm(Owner)
|
|
{
|
|
}
|
|
//---------------------------------------------------------------------------
|
|
void __fastcall TAcercaDe::Timer1Timer(TObject *Sender)
|
|
{
|
|
Timer1->Enabled = false;
|
|
Close();
|
|
}
|
|
//---------------------------------------------------------------------------
|
|
|