41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef ListInitH
|
|
#define ListInitH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <Graphics.hpp>
|
|
#include <jpeg.hpp>
|
|
#include <Db.hpp>
|
|
#include <DBTables.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TAcercaDe : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TImage *Image1;
|
|
TImage *Image2;
|
|
TLabel *Label1;
|
|
TLabel *Label2;
|
|
TTimer *Timer1;
|
|
TImage *Image3;
|
|
TLabel *Label3;
|
|
TLabel *Label4;
|
|
TLabel *Label5;
|
|
TLabel *Label6;
|
|
TLabel *Label7;
|
|
TLabel *Label8;
|
|
TImage *Image4;
|
|
void __fastcall Timer1Timer(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TAcercaDe(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TAcercaDe *AcercaDe;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|