36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef Unit1H
|
|
#define Unit1H
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ComCtrls.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <jpeg.hpp>
|
|
#include <Db.hpp>
|
|
#include <DBTables.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm1 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabel *Label1;
|
|
TLabel *Label2;
|
|
TImage *Image1;
|
|
TProgressBar *ProgressBar1;
|
|
TTimer *Timer1;
|
|
TTable *TbD;
|
|
void __fastcall Timer1Timer(TObject *Sender);
|
|
private: // User declarations
|
|
void __fastcall GenerarIndice( AnsiString FicheroSalida );
|
|
void __fastcall GenerarEnlaces();
|
|
public: // User declarations
|
|
__fastcall TForm1(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TForm1 *Form1;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|