-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathuTCP2SerialMain.dfm
188 lines (188 loc) · 3.65 KB
/
uTCP2SerialMain.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
object Form2: TForm2
Left = 0
Top = 0
Margins.Left = 5
Margins.Right = 5
Caption = 'TCP to Serial'
ClientHeight = 485
ClientWidth = 657
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 GroupBox1: TGroupBox
AlignWithMargins = True
Left = 5
Top = 55
Width = 647
Height = 106
Margins.Left = 5
Margins.Right = 5
Align = alTop
Caption = 'Server'
TabOrder = 0
object cbServerServiceIP: TComboBox
Left = 69
Top = 17
Width = 145
Height = 21
TabOrder = 0
end
object StaticText1: TStaticText
Left = 11
Top = 21
Width = 52
Height = 17
Caption = 'Service IP'
TabOrder = 1
end
object CheckBox1: TCheckBox
AlignWithMargins = True
Left = 233
Top = 18
Width = 70
Height = 83
Align = alRight
Alignment = taLeftJustify
Caption = 'Using ABD?'
TabOrder = 2
end
object GroupBox3: TGroupBox
AlignWithMargins = True
Left = 309
Top = 15
Width = 333
Height = 86
Margins.Top = 0
Align = alRight
Caption = 'ABD'
TabOrder = 3
object RadioGroup2: TRadioGroup
AlignWithMargins = True
Left = 5
Top = 18
Width = 323
Height = 34
Align = alTop
Caption = 'Type'
Columns = 2
Items.Strings = (
'Called Me'
'Called Device')
TabOrder = 0
end
object Panel1: TPanel
AlignWithMargins = True
Left = 5
Top = 58
Width = 323
Height = 26
Align = alTop
BevelOuter = bvNone
TabOrder = 1
object StaticText2: TStaticText
Left = 3
Top = 8
Width = 21
Height = 17
Caption = 'Call'
TabOrder = 0
end
object Edit1: TEdit
Left = 30
Top = 3
Width = 121
Height = 21
TabOrder = 1
end
end
end
object StaticText3: TStaticText
Left = 11
Top = 47
Width = 59
Height = 17
Caption = 'ServicePort'
TabOrder = 4
end
object edtServerPort: TEdit
Left = 69
Top = 44
Width = 121
Height = 21
TabOrder = 5
Text = '27490'
end
end
object GroupBox2: TGroupBox
AlignWithMargins = True
Left = 5
Top = 167
Width = 647
Height = 147
Margins.Left = 5
Margins.Right = 5
Align = alTop
Caption = 'Client'
TabOrder = 1
end
object RadioGroup1: TRadioGroup
AlignWithMargins = True
Left = 5
Top = 3
Width = 647
Height = 46
Margins.Left = 5
Margins.Right = 5
Align = alTop
Caption = 'Type'
Columns = 2
Items.Strings = (
'Server'
'Client')
TabOrder = 2
end
object GroupBox4: TGroupBox
AlignWithMargins = True
Left = 5
Top = 320
Width = 647
Height = 105
Margins.Left = 5
Margins.Right = 5
Align = alTop
Caption = 'GroupBox4'
TabOrder = 3
object btnRun: TButton
Left = 3
Top = 16
Width = 75
Height = 25
Caption = 'Run'
TabOrder = 0
end
object btnStop: TButton
Left = 84
Top = 16
Width = 75
Height = 25
Caption = 'Stop'
TabOrder = 1
end
object Button1: TButton
Left = 165
Top = 16
Width = 75
Height = 25
Caption = 'ServerTest'
TabOrder = 2
OnClick = Button1Click
end
end
end