62 lines
2.0 KiB
C++
62 lines
2.0 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef capg_ifactH
|
|
#define capg_ifactH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <Buttons.hpp>
|
|
#include <ComCtrls.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <Graphics.hpp>
|
|
#include <Db.hpp>
|
|
#include <DBTables.hpp>
|
|
#include <DBGrids.hpp>
|
|
#include <Grids.hpp>
|
|
#include <DB.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TiFact : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPanel *Panel1;
|
|
TLabel *Label1;
|
|
TBevel *Bevel1;
|
|
TImage *CardOK;
|
|
TPageControl *PageControl1;
|
|
TDateTimePicker *fdesde;
|
|
TDateTimePicker *fhasta;
|
|
TLabel *Label2;
|
|
TTabSheet *TabSheet1;
|
|
TTabSheet *TabSheet2;
|
|
TLabel *Label3;
|
|
TLabel *Label4;
|
|
TBitBtn *BitBtn1;
|
|
TTable *TbFacturas;
|
|
TLabel *lTotalA;
|
|
TLabel *lTotalNA;
|
|
TTable *TbPendientes;
|
|
TDBGrid *DBGrid1;
|
|
TDataSource *DsPendientes;
|
|
TAutoIncField *TbPendientesid;
|
|
TIntegerField *TbPendientesidc;
|
|
TCurrencyField *TbPendientesimporte;
|
|
TDateField *TbPendientesfechaE;
|
|
TDateField *TbPendientesfechaS;
|
|
TTimeField *TbPendienteshoraE;
|
|
TTimeField *TbPendienteshoraS;
|
|
TBooleanField *TbPendientespagado;
|
|
TTable *TbAbonados;
|
|
TStringField *TbPendientesNombreC;
|
|
TStringField *TbPendientesApellidoC;
|
|
void __fastcall BitBtn1Click(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TiFact(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TiFact *iFact;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|