-
Notifications
You must be signed in to change notification settings - Fork 3
/
AddScreen.dfm
67 lines (67 loc) · 1.17 KB
/
AddScreen.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
object FAddScreen: TFAddScreen
Left = 1395
Top = 712
Width = 301
Height = 177
Caption = 'Add Network Screen'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnActivate = FormActivate
PixelsPerInch = 96
TextHeight = 13
object LPort: TLabel
Left = 94
Top = 58
Width = 65
Height = 13
Caption = 'Network Port:'
end
object LServer: TLabel
Left = 30
Top = 26
Width = 37
Height = 13
Caption = 'Host/IP'
end
object BOk: TButton
Left = 80
Top = 95
Width = 75
Height = 25
Caption = 'OK'
TabOrder = 0
OnClick = BOkClick
end
object BCancel: TButton
Left = 168
Top = 95
Width = 75
Height = 25
Caption = 'Cancel'
TabOrder = 1
OnClick = BCancelClick
end
object EPort: TEdit
Left = 168
Top = 56
Width = 81
Height = 21
TabOrder = 2
Text = '8080'
OnChange = EPortChange
end
object EServer: TEdit
Left = 72
Top = 24
Width = 177
Height = 21
TabOrder = 3
Text = '8080'
OnChange = EServerChange
end
end