37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef capg_tarifasH
|
|
#define capg_tarifasH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <Db.hpp>
|
|
#include <DBTables.hpp>
|
|
#include <DBGrids.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <Graphics.hpp>
|
|
#include <Grids.hpp>
|
|
#include <DB.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TfTarifas : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TDataSource *DsPrecios;
|
|
TTable *TbPrecios;
|
|
TPanel *Panel1;
|
|
TLabel *Label1;
|
|
TBevel *Bevel1;
|
|
TImage *CardOK;
|
|
TDBGrid *DBGrid1;
|
|
void __fastcall TbPreciosBeforeOpen(TDataSet *DataSet);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TfTarifas(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TfTarifas *fTarifas;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|