-
Notifications
You must be signed in to change notification settings - Fork 0
/
otdform.h
38 lines (37 loc) · 1.22 KB
/
otdform.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
34
35
36
37
38
//---------------------------------------------------------------------------
#ifndef otdformH
#define otdformH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "FIBDatabase.hpp"
#include "FIBDataSet.hpp"
#include "pFIBDatabase.hpp"
#include "pFIBDataSet.hpp"
#include <DB.hpp>
#include <DBGrids.hpp>
#include <Grids.hpp>
#include <Buttons.hpp>
#include <DBTables.hpp>
#include "DBCtrlsEh.hpp"
#include "DBLookupEh.hpp"
#include <Mask.hpp>
#include "DBGridEh.hpp"
//---------------------------------------------------------------------------
class TOtdelForm : public TForm
{
__published: // IDE-managed Components
TDBGridEh *GridOtdel;
void __fastcall GridOtdelKeyDown(TObject *Sender, WORD &Key,
TShiftState Shift);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private: // User declarations
public: // User declarations
__fastcall TOtdelForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TOtdelForm *OtdelForm;
//---------------------------------------------------------------------------
#endif