-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathunit1.lfm
81 lines (81 loc) · 1.49 KB
/
unit1.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
object Form1: TForm1
Left = 347
Height = 733
Top = 107
Width = 886
Caption = 'Listen'
ClientHeight = 733
ClientWidth = 886
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
LCLVersion = '2.3.0.0'
object Button1: TButton
Left = 8
Height = 25
Top = 8
Width = 75
Caption = 'Listen'
OnClick = Button1Click
TabOrder = 0
end
object Memo1: TMemo
Left = 8
Height = 648
Top = 40
Width = 872
Anchors = [akTop, akLeft, akRight, akBottom]
Font.Name = 'Courier New'
Lines.Strings = (
'Memo1'
)
ParentFont = False
ScrollBars = ssAutoBoth
TabOrder = 1
WordWrap = False
end
object Button2: TButton
Left = 160
Height = 25
Top = 8
Width = 75
Caption = 'Disconnect'
OnClick = Button2Click
TabOrder = 2
end
object Button3: TButton
Left = 805
Height = 25
Top = 696
Width = 75
Anchors = [akRight, akBottom]
Caption = 'Clear'
OnClick = Button3Click
TabOrder = 3
end
object CheckBox1: TCheckBox
Left = 8
Height = 22
Top = 699
Width = 194
Anchors = [akLeft, akBottom]
Caption = 'Include Timestamps into log'
TabOrder = 4
end
object Button4: TButton
Left = 805
Height = 25
Top = 8
Width = 75
Anchors = [akTop, akRight]
Caption = 'Close'
OnClick = Button4Click
TabOrder = 5
end
object LTCPComponent1: TLTCPComponent
Port = 0
Timeout = 0
ReuseAddress = True
Left = 104
Top = 8
end
end