First commit 14/02/1999

This commit is contained in:
2021-09-12 22:19:30 +02:00
commit d031fca570
464 changed files with 22399 additions and 0 deletions

35
exportador/Unit1.h Normal file
View File

@ -0,0 +1,35 @@
//---------------------------------------------------------------------------
#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