-
Notifications
You must be signed in to change notification settings - Fork 1
/
uServer.dfm
90 lines (90 loc) · 1.78 KB
/
uServer.dfm
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
object fServer: TfServer
Left = 0
Top = 0
Caption = 'Server'
ClientHeight = 444
ClientWidth = 631
Color = clWindow
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = 'Microsoft YaHei UI'
Font.Style = []
OldCreateOrder = False
Position = poDesktopCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 20
object lblVclStyle: TLabel
Left = 46
Top = 61
Width = 68
Height = 20
Caption = 'VCL Style'
end
object edtIP: TLabeledEdit
Left = 48
Top = 24
Width = 121
Height = 28
EditLabel.Width = 13
EditLabel.Height = 20
EditLabel.Caption = 'IP'
LabelPosition = lpLeft
LabelSpacing = 4
TabOrder = 0
Text = '127.0.0.1'
end
object edtPort: TLabeledEdit
Left = 272
Top = 24
Width = 121
Height = 28
EditLabel.Width = 31
EditLabel.Height = 20
EditLabel.Caption = 'Port'
LabelPosition = lpLeft
LabelSpacing = 4
TabOrder = 1
Text = '7695'
end
object cbxVclStyles: TComboBox
Left = 120
Top = 58
Width = 193
Height = 28
Style = csDropDownList
TabOrder = 2
OnChange = cbxVclStylesChange
end
object mmoLog: TMemo
Left = 0
Top = 92
Width = 631
Height = 352
Align = alBottom
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 3
end
object btnListen: TButton
Left = 399
Top = 26
Width = 75
Height = 25
Caption = #25171#24320
TabOrder = 4
OnClick = btnListenClick
end
object idtcpsrvr1: TIdTCPServer
OnStatus = idtcpsrvr1Status
Bindings = <>
DefaultPort = 0
OnConnect = idtcpsrvr1Connect
OnDisconnect = idtcpsrvr1Disconnect
OnException = idtcpsrvr1Exception
OnExecute = idtcpsrvr1Execute
Left = 536
Top = 32
end
end