-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit2.h
70 lines (67 loc) · 2.25 KB
/
Unit2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//---------------------------------------------------------------------------
#ifndef Unit2H
#define Unit2H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ADODB.hpp>
#include <DB.hpp>
#include <DBCtrls.hpp>
#include <DBGrids.hpp>
#include <Grids.hpp>
#include <ExtCtrls.hpp>
#include <jpeg.hpp>
#include <ValEdit.hpp>
//---------------------------------------------------------------------------
class TmainTUIT : public TForm
{
__published: // IDE-managed Components
TDataSource *DataSource1;
TADOTable *ADOTable1;
TDBComboBox *DBComboBox1;
TLabel *Label1;
TDBGrid *DBGrid1;
TLabel *Label3;
TLabel *Label4;
TLabel *Label5;
TLabel *Label6;
TDBMemo *DBMemo1;
TDBMemo *DBMemo2;
TDBMemo *DBMemo3;
TCheckBox *CheckBox1;
TDBMemo *DBMemo4;
TDBMemo *DBMemo5;
TLabel *Label7;
TDBText *DBText1;
TDBText *DBText2;
TDBText *DBText3;
TImage *Image1;
TLabel *Label2;
TImage *Image2;
TImage *Image3;
TImage *Image4;
TImage *Image5;
TImage *Image6;
TImage *Image7;
void __fastcall DBComboBox1Change(TObject *Sender);
void __fastcall CheckBox1Click(TObject *Sender);
void __fastcall Image6Click(TObject *Sender);
void __fastcall Image6MouseMove(TObject *Sender, TShiftState Shift,
int X, int Y);
void __fastcall Image7MouseMove(TObject *Sender, TShiftState Shift,
int X, int Y);
void __fastcall Image1MouseMove(TObject *Sender, TShiftState Shift,
int X, int Y);
void __fastcall Image1MouseDown(TObject *Sender,
TMouseButton Button, TShiftState Shift, int X, int Y);
void __fastcall FormCreate(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TmainTUIT(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TmainTUIT *mainTUIT;
//---------------------------------------------------------------------------
#endif