-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unit1.h
79 lines (78 loc) · 2.17 KB
/
Unit1.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
71
72
73
74
75
76
77
78
79
//---------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <Vcl.Buttons.hpp>
#include <Vcl.Graphics.hpp>
#include <Data.DB.hpp>
#include <Vcl.DBGrids.hpp>
#include <Vcl.Grids.hpp>
//---------------------------------------------------------------------------
class TFMAIN : public TForm
{
__published: // IDE-managed Components
TPanel *Panel1;
TPanel *Panel2;
TPanel *Panel3;
TPanel *Panel4;
TPanel *Panel6;
TPanel *Panel7;
TPanel *Panel8;
TPanel *Panel10;
TPanel *Panel11;
TPanel *Panel12;
TImage *Image1;
TImage *Image2;
TImage *Image3;
TSpeedButton *SpeedButton1;
TSpeedButton *SpeedButton2;
TSpeedButton *SpeedButton3;
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TLabel *Label4;
TLabel *Label5;
TLabel *Label6;
TSpeedButton *SpeedButton7;
TImage *Image4;
TImage *Image5;
TImage *Image6;
TImage *Image7;
TSpeedButton *SpeedButton4;
TSpeedButton *SpeedButton5;
TSpeedButton *SpeedButton6;
TSpeedButton *SpeedButton9;
TSpeedButton *SpeedButton10;
TSpeedButton *SpeedButton11;
TImage *Image8;
TLabel *Label7;
TDBGrid *DBGrid1;
TSpeedButton *SpeedButton12;
TPanel *Panel5;
TSpeedButton *S1;
TImage *Image9;
TTimer *Timer1;
TLabel *Label8;
TLabel *Label9;
void __fastcall SpeedButton5Click(TObject *Sender);
void __fastcall SpeedButton6Click(TObject *Sender);
void __fastcall S1Click(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
void __fastcall SpeedButton12Click(TObject *Sender);
void __fastcall SpeedButton1Click(TObject *Sender);
void __fastcall SpeedButton2Click(TObject *Sender);
void __fastcall SpeedButton3Click(TObject *Sender);
void __fastcall Timer1Timer(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TFMAIN(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TFMAIN *FMAIN;
//---------------------------------------------------------------------------
#endif