49 lines
1.6 KiB
C++
49 lines
1.6 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef herm_insigniasH
|
|
#define herm_insigniasH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ComCtrls.hpp>
|
|
#include <Db.hpp>
|
|
#include <DBGrids.hpp>
|
|
#include <DBTables.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <Grids.hpp>
|
|
#include <Buttons.hpp>
|
|
#include <Graphics.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TInsignias : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TTabControl *TabControl1;
|
|
TDBGrid *DBGrid2;
|
|
TDataSource *DsBusqHnos;
|
|
TTable *TbInsignias;
|
|
TDataSource *DsInsignias;
|
|
TPanel *Panel1;
|
|
TImage *Image1;
|
|
TBevel *Bevel1;
|
|
TSpeedButton *SpeedButton1;
|
|
TSpeedButton *SpeedButton2;
|
|
TLabel *Label1;
|
|
TComboBox *OrdenarPor;
|
|
TQuery *TbBusqHnos;
|
|
TDBGrid *DBGrid1;
|
|
TSplitter *Splitter1;
|
|
void __fastcall SpeedButton1Click(TObject *Sender);
|
|
void __fastcall TabControl1Change(TObject *Sender);
|
|
void __fastcall TbInsigniasNewRecord(TDataSet *DataSet);
|
|
void __fastcall DBGrid2CellClick(TColumn *Column);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TInsignias(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TInsignias *Insignias;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|