-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMain.dfm
executable file
·116 lines (116 loc) · 2.24 KB
/
Main.dfm
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
object Form1: TForm1
Left = 0
Top = 0
BorderStyle = bsSingle
Caption = 'Clients DB'
ClientHeight = 330
ClientWidth = 754
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object AddNewButton: TButton
Left = 8
Top = 16
Width = 97
Height = 25
Caption = '&Add new item'
TabOrder = 0
OnClick = AddNewButtonClick
end
object EditButton: TButton
Left = 8
Top = 47
Width = 97
Height = 25
Caption = '&Edit'
TabOrder = 1
OnClick = EditButtonClick
end
object DeleteButton: TButton
Left = 8
Top = 78
Width = 97
Height = 25
Caption = '&Delete'
TabOrder = 2
OnClick = DeleteButtonClick
end
object ShowAllButton: TButton
Left = 8
Top = 185
Width = 97
Height = 25
Caption = 'S&how all'
TabOrder = 3
OnClick = ShowAllButtonClick
end
object StringGrid1: TStringGrid
Left = 120
Top = 16
Width = 625
Height = 305
BevelEdges = []
BevelInner = bvNone
BevelOuter = bvNone
ColCount = 7
DefaultColWidth = 80
DrawingStyle = gdsGradient
FixedCols = 0
RowCount = 51
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing, goRowSelect]
TabOrder = 4
end
object LoadButton: TButton
Left = 8
Top = 234
Width = 97
Height = 25
Caption = '&Load'
TabOrder = 5
OnClick = LoadButtonClick
end
object SaveButton: TButton
Left = 8
Top = 265
Width = 97
Height = 25
Caption = '&Save'
TabOrder = 6
OnClick = SaveButtonClick
end
object ClearButton: TButton
Left = 8
Top = 296
Width = 97
Height = 25
Caption = '&Clear'
TabOrder = 7
OnClick = ClearButtonClick
end
object SortButton: TProcessButton
Left = 8
Top = 156
Width = 97
Height = 25
Caption = 'Sort'
TabOrder = 8
OnClick = SortButtonClick
end
object SearchButton: TProcessButton
Left = 8
Top = 125
Width = 97
Height = 25
Caption = 'Search'
TabOrder = 9
OnClick = SearchButtonClick
end
end