50 lines
1.9 KiB
C++
50 lines
1.9 KiB
C++
//---------------------------------------------------------------------------
|
|
#ifndef InicializadorH
|
|
#define InicializadorH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <Db.hpp>
|
|
#include <DBTables.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TInitBDE : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabel *Label1;
|
|
TTable *Table;
|
|
TMemo *Info;
|
|
TBevel *Bevel1;
|
|
TTimer *Timer1;
|
|
void __fastcall FormShow(TObject *Sender);
|
|
|
|
void __fastcall Timer1Timer(TObject *Sender);
|
|
private: // User declarations
|
|
bool CloseOK;
|
|
void __fastcall CreaProductos( TTable *TbProdBusq );
|
|
void __fastcall CreaProductosCircular( TTable *TbProdBusq );
|
|
void __fastcall CreaProductosHistorico( TTable *TbProdBusq );
|
|
|
|
void __fastcall CreaProveedores( TTable *Proveedor );
|
|
void __fastcall CreaEmpleados( TTable *Empleado );
|
|
void __fastcall CreaClientes( TTable *Cliente );
|
|
void __fastcall CreaCtblCC( TTable *TbCtblCC );
|
|
void __fastcall CreaCtblPteC( TTable *TbCtblPteC );
|
|
void __fastcall CreaCartera( TTable *TbCartera );
|
|
void __fastcall CreaFacturasCmpC( TTable *TbFacturasC );
|
|
void __fastcall CreaFacturasCmpL( TTable *TbFacturasD );
|
|
void __fastcall CreaFacturasVntC( TTable *TbVentasC );
|
|
void __fastcall CreaFacturasVntR( TTable *TbVentasC );
|
|
void __fastcall CreaFacturasVntL( TTable *TbVentasD );
|
|
void __fastcall CreaInformeVntC( TTable *TbVentasI );
|
|
void __fastcall CreaPermisos( TTable *TbPermisos );
|
|
public: // User declarations
|
|
__fastcall TInitBDE(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TInitBDE *InitBDE;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|