-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrm1.lfm
50 lines (50 loc) · 919 Bytes
/
frm1.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
object Form1: TForm1
Left = 248
Height = 194
Top = 157
Width = 543
Caption = 'LAMPP Mini Control Panel'
ClientHeight = 194
ClientWidth = 543
OnCreate = FormCreate
LCLVersion = '2.0.0.4'
object btnStart: TBitBtn
Left = 320
Height = 62
Top = 24
Width = 203
Caption = 'Start'
OnClick = btnStartClick
TabOrder = 0
end
object btnStop: TBitBtn
Left = 320
Height = 62
Top = 104
Width = 203
Caption = 'Stop'
OnClick = btnStopClick
TabOrder = 1
end
object btnStatus: TBitBtn
Left = 16
Height = 32
Top = 134
Width = 283
Caption = 'Update Status'
OnClick = btnStatusClick
TabOrder = 2
end
object Memo1: TMemo
Left = 16
Height = 104
Top = 24
Width = 283
Lines.Strings = (
'-- Status will appear here --'
)
ReadOnly = True
ScrollBars = ssAutoVertical
TabOrder = 3
end
end