-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuwrite_port.lfm
65 lines (65 loc) · 1.42 KB
/
uwrite_port.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
object FWrite_Port: TFWrite_Port
Left = 337
Height = 240
Top = 196
Width = 532
Caption = 'Select'
ClientHeight = 240
ClientWidth = 532
OnCreate = FormCreate
OnDestroy = FormDestroy
LCLVersion = '1.6.0.4'
object Button1: TButton
Left = 436
Height = 25
Top = 16
Width = 75
Anchors = [akTop, akRight]
Caption = 'Write file'
OnClick = Button1Click
TabOrder = 0
end
object CancelButton: TButton
Left = 436
Height = 25
Top = 48
Width = 75
Anchors = [akTop, akRight]
Cancel = True
Caption = 'Cancel'
OnClick = CancelButtonClick
TabOrder = 1
end
object RadioGroup1: TRadioGroup
Left = 16
Height = 209
Top = 8
Width = 185
AutoFill = True
Caption = 'Open port'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 191
ClientWidth = 183
ItemIndex = 0
Items.Strings = (
'SSH'
'HTTP'
'HTTPS'
'FTP'
'SNMP'
'NAGIOS'
)
TabOrder = 2
end
object SD1: TSaveDialog
Options = [ofOverwritePrompt, ofPathMustExist, ofEnableSizing, ofViewDetail]
left = 128
top = 32
end
end