33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef BuscarEntreLineasH
|
|
#define BuscarEntreLineasH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <Db.hpp>
|
|
#include <DBTables.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm1 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabel *Label1;
|
|
TButton *Button1;
|
|
TButton *Button2;
|
|
TDatabase *Empresas;
|
|
TTable *TbVentasC;
|
|
TAutoIncField *TbVentasCEnlaceFactura;
|
|
TIntegerField *TbVentasCCodFactura;
|
|
void __fastcall Button2Click(TObject *Sender);
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm1(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TForm1 *Form1;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|