44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
//---------------------------------------------------------------------------
|
|
#ifndef busquedaH
|
|
#define busquedaH
|
|
//---------------------------------------------------------------------------
|
|
#include <vcl\Classes.hpp>
|
|
#include <vcl\Controls.hpp>
|
|
#include <vcl\StdCtrls.hpp>
|
|
#include <vcl\Forms.hpp>
|
|
#include <vcl\DBGrids.hpp>
|
|
#include "Grids.hpp"
|
|
#include <vcl\DB.hpp>
|
|
#include <vcl\DBTables.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm4 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TComboBox *ComboBox1;
|
|
TLabel *Label1;
|
|
TLabel *Label2;
|
|
TDBGrid *DBGrid1;
|
|
TEdit *Edit1;
|
|
TDataSource *DataSource1;
|
|
TTable *Table1;
|
|
void __fastcall ComboBox1Change(TObject *Sender);
|
|
|
|
void __fastcall Edit1KeyPress(TObject *Sender, char &Key);
|
|
|
|
void __fastcall FormActivate(TObject *Sender);
|
|
|
|
|
|
|
|
|
|
|
|
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm4(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern int direccion;
|
|
extern TForm4 *Form4;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|