-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathunit2.lfm
92 lines (92 loc) · 1.84 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
object Form2: TForm2
Left = 248
Height = 545
Top = 115
Width = 679
Caption = 'Form2'
ClientHeight = 545
ClientWidth = 679
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '1.9.0.0'
object Label1: TLabel
Left = 8
Height = 17
Top = 16
Width = 73
Caption = 'First Register'
ParentColor = False
end
object Edit1: TEdit
Left = 88
Height = 27
Top = 8
Width = 80
OnChange = Edit1Change
TabOrder = 0
Text = 'Edit1'
end
object Label2: TLabel
Left = 184
Height = 17
Top = 16
Width = 33
Caption = 'Count'
ParentColor = False
end
object Edit2: TEdit
Left = 224
Height = 27
Top = 8
Width = 80
OnChange = Edit1Change
TabOrder = 1
Text = 'Edit2'
end
object StringGrid1: TStringGrid
Left = 8
Height = 464
Top = 40
Width = 664
Anchors = [akTop, akLeft, akRight, akBottom]
ColCount = 4
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing, goEditing, goSmoothScroll, goFixedColSizing]
TabOrder = 2
OnSetEditText = StringGrid1SetEditText
end
object Button1: TButton
Left = 8
Height = 25
Top = 512
Width = 664
Anchors = [akLeft, akRight, akBottom]
Caption = 'Close'
OnClick = Button1Click
TabOrder = 3
end
object CheckBox1: TCheckBox
Left = 400
Height = 22
Top = 12
Width = 94
Caption = 'Auto refresh'
OnChange = CheckBox1Change
TabOrder = 4
end
object Button2: TButton
Left = 312
Height = 25
Top = 8
Width = 75
Caption = 'Load'
OnClick = Button2Click
TabOrder = 5
Visible = False
end
object Timer1: TTimer
Enabled = False
OnTimer = Timer1Timer
left = 544
top = 8
end
end