-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathUnit2.lfm
168 lines (168 loc) · 3.18 KB
/
Unit2.lfm
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
object Form2: TForm2
Left = 347
Height = 300
Top = 107
Width = 297
ActiveControl = Edit1
BorderIcons = [biSystemMenu, biMinimize]
Caption = 'Form2'
ClientHeight = 300
ClientWidth = 297
Font.Height = -11
Font.Name = 'MS Sans Serif'
Position = poScreenCenter
LCLVersion = '3.99.0.0'
OnCreate = FormCreate
object Label7: TLabel
Left = 16
Height = 14
Top = 240
Width = 44
Caption = 'Result : '
ParentColor = False
end
object GroupBox1: TGroupBox
Left = 8
Height = 184
Top = 8
Width = 278
Anchors = [akTop, akLeft, akRight]
Caption = ' Parameters '
ClientHeight = 169
ClientWidth = 276
TabOrder = 0
object Label1: TLabel
Left = 16
Height = 14
Top = 24
Width = 37
Caption = 'Label1'
ParentColor = False
end
object Label2: TLabel
Left = 16
Height = 14
Top = 48
Width = 37
Caption = 'Label1'
ParentColor = False
end
object Label3: TLabel
Left = 16
Height = 14
Top = 72
Width = 37
Caption = 'Label1'
ParentColor = False
end
object Label4: TLabel
Left = 16
Height = 14
Top = 96
Width = 37
Caption = 'Label1'
ParentColor = False
end
object Label5: TLabel
Left = 16
Height = 14
Top = 120
Width = 37
Caption = 'Label1'
ParentColor = False
end
object Label6: TLabel
Left = 16
Height = 14
Top = 144
Width = 37
Caption = 'Label1'
ParentColor = False
end
object Edit1: TEdit
Left = 127
Height = 24
Top = 16
Width = 121
Anchors = [akTop, akRight]
TabOrder = 0
Text = '2'
end
object Edit2: TEdit
Left = 127
Height = 24
Top = 40
Width = 121
Anchors = [akTop, akRight]
TabOrder = 1
Text = '1'
end
object Edit3: TEdit
Left = 127
Height = 24
Top = 64
Width = 121
Anchors = [akTop, akRight]
TabOrder = 2
Text = '2'
end
object Edit4: TEdit
Left = 127
Height = 24
Top = 88
Width = 121
Anchors = [akTop, akRight]
TabOrder = 3
Text = '2'
end
object Edit5: TEdit
Left = 127
Height = 24
Top = 112
Width = 121
Anchors = [akTop, akRight]
TabOrder = 4
Text = '10'
end
object Edit6: TEdit
Left = 127
Height = 24
Top = 136
Width = 121
Anchors = [akTop, akRight]
TabOrder = 5
Text = '10'
end
object ScrollBar1: TScrollBar
Left = 257
Height = 142
Top = 16
Width = 14
Anchors = [akTop, akRight]
Kind = sbVertical
PageSize = 0
TabOrder = 6
OnChange = ScrollBar1Change
end
end
object Button1: TButton
Left = 8
Height = 25
Top = 200
Width = 278
Anchors = [akTop, akLeft, akRight]
Caption = 'Execute'
TabOrder = 1
OnClick = Button1Click
end
object Button2: TButton
Left = 8
Height = 25
Top = 264
Width = 278
Anchors = [akTop, akLeft, akRight]
Caption = 'OK'
TabOrder = 2
OnClick = Button2Click
end
end