-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathClient.dfm
90 lines (90 loc) · 1.62 KB
/
Client.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 Form1: TForm1
Left = 0
Top = 0
Caption = 'Client'
ClientHeight = 299
ClientWidth = 635
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 170
Top = 8
Width = 17
Height = 13
Caption = 'Log'
end
object eTextToSend: TEdit
Left = 8
Top = 106
Width = 156
Height = 21
TabOrder = 0
Text = 'Text To Send'
end
object bConnect: TButton
Left = 8
Top = 62
Width = 75
Height = 25
Caption = 'Connect'
TabOrder = 1
OnClick = bConnectClick
end
object eServer: TEdit
Left = 8
Top = 8
Width = 156
Height = 21
TabOrder = 2
Text = 'localhost'
end
object ePort: TEdit
Left = 8
Top = 35
Width = 156
Height = 21
TabOrder = 3
Text = '1234'
end
object mLog: TMemo
Left = 170
Top = 27
Width = 457
Height = 264
TabOrder = 4
end
object bDisconnect: TButton
Left = 89
Top = 62
Width = 75
Height = 25
Caption = 'Disconnect'
TabOrder = 5
OnClick = bDisconnectClick
end
object bSend: TButton
Left = 8
Top = 133
Width = 156
Height = 25
Caption = 'Send Line'
TabOrder = 6
OnClick = bSendClick
end
object IdTCPClient1: TIdTCPClient
ConnectTimeout = 0
IPVersion = Id_IPv4
Port = 0
ReadTimeout = -1
Left = 64
Top = 192
end
end