-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathunit3.lfm
64 lines (64 loc) · 1.09 KB
/
unit3.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
object Form3: TForm3
Left = 252
Height = 173
Top = 121
Width = 208
Caption = 'Form3'
ClientHeight = 173
ClientWidth = 208
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '1.4.2.0'
object Button1: TButton
Left = 8
Height = 25
Top = 136
Width = 75
Caption = 'Cancel'
ModalResult = 2
TabOrder = 0
end
object Button2: TButton
Left = 125
Height = 25
Top = 136
Width = 75
Caption = 'OK'
ModalResult = 1
TabOrder = 1
end
object Label1: TLabel
Left = 8
Height = 13
Top = 14
Width = 73
Caption = 'Number of sets'
ParentColor = False
end
object Label2: TLabel
Left = 8
Height = 13
Top = 72
Width = 133
Caption = 'Number of elements per set'
ParentColor = False
end
object Edit1: TEdit
Left = 120
Height = 21
Top = 40
Width = 80
OnKeyPress = Edit1KeyPress
TabOrder = 2
Text = 'Edit1'
end
object Edit2: TEdit
Left = 120
Height = 21
Top = 96
Width = 80
OnKeyPress = Edit1KeyPress
TabOrder = 3
Text = 'Edit2'
end
end