-
Notifications
You must be signed in to change notification settings - Fork 0
/
Predmetform.h
33 lines (32 loc) · 1.12 KB
/
Predmetform.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//---------------------------------------------------------------------------
#ifndef PredmetformH
#define PredmetformH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Grids.hpp>
#include "DBGridEh.hpp"
#include <ExtCtrls.hpp>
#include <Buttons.hpp>
//---------------------------------------------------------------------------
class TPredForm : public TForm
{
__published: // IDE-managed Components
TDBGridEh *DBGridEh1;
TPanel *Panel1;
TButton *Button1;
TBitBtn *BitBtn1;
void __fastcall DBGridEh1DblClick(TObject *Sender);
void __fastcall DBGridEh1KeyDown(TObject *Sender, WORD &Key,
TShiftState Shift);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private: // User declarations
public: // User declarations
__fastcall TPredForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TPredForm *PredForm;
//---------------------------------------------------------------------------
#endif