//--------------------------------------------------------------------------- #ifndef InicializadorH #define InicializadorH //--------------------------------------------------------------------------- #include #include #include #include #include #include #include //--------------------------------------------------------------------------- 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