46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
//----------------------------------------------------------------------------
|
|
#ifndef Busc1H
|
|
#define Busc1H
|
|
//----------------------------------------------------------------------------
|
|
#include <vcl\ExtCtrls.hpp>
|
|
#include <vcl\Buttons.hpp>
|
|
#include <vcl\StdCtrls.hpp>
|
|
#include <vcl\Controls.hpp>
|
|
#include <vcl\Forms.hpp>
|
|
#include <vcl\Graphics.hpp>
|
|
#include <vcl\Classes.hpp>
|
|
#include <vcl\SysUtils.hpp>
|
|
#include <vcl\Windows.hpp>
|
|
#include <vcl\System.hpp>
|
|
#include <vcl\DBGrids.hpp>
|
|
#include <vcl\DBTables.hpp>
|
|
#include <vcl\DB.hpp>
|
|
#include "Grids.hpp"
|
|
#include <Db.hpp>
|
|
//----------------------------------------------------------------------------
|
|
class TDlgBuscProd : public TForm
|
|
{
|
|
__published:
|
|
TButton *OKBtn;
|
|
TButton *CancelBtn;
|
|
TBevel *Bevel1;
|
|
TDBGrid *DBGrid1;
|
|
TComboBox *ComboBox1;
|
|
TEdit *Edit1;
|
|
TLabel *Label1;
|
|
TLabel *Label2;
|
|
TDataSource *DataSource1;
|
|
void __fastcall ComboBox1Change(TObject *Sender);
|
|
void __fastcall Edit1Change(TObject *Sender);
|
|
|
|
void __fastcall DBGrid1DblClick(TObject *Sender);
|
|
|
|
private:
|
|
public:
|
|
virtual __fastcall TDlgBuscProd(TComponent* AOwner);
|
|
};
|
|
//----------------------------------------------------------------------------
|
|
extern TDlgBuscProd *DlgBuscProd;
|
|
//----------------------------------------------------------------------------
|
|
#endif
|