-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuFrmSettings.dfm
223 lines (223 loc) · 4.66 KB
/
uFrmSettings.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
object frmSettings: TfrmSettings
Left = 0
Top = 0
Caption = 'Settings'
ClientHeight = 289
ClientWidth = 524
Color = clBtnFace
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = 'Courier New'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 17
object sGroupBox1: TsGroupBox
AlignWithMargins = True
Left = 10
Top = 5
Width = 504
Height = 224
Margins.Left = 10
Margins.Top = 5
Margins.Right = 10
Margins.Bottom = 10
Align = alClient
Caption = 'DOD Server FTP Login Information'
TabOrder = 0
ExplicitHeight = 267
DesignSize = (
504
224)
object sLabel1: TsLabel
Left = 17
Top = 35
Width = 89
Height = 18
Alignment = taRightJustify
AutoSize = False
Caption = '&Host:'
FocusControl = txtHost
end
object sLabel2: TsLabel
Left = 11
Top = 67
Width = 95
Height = 18
Alignment = taRightJustify
AutoSize = False
Caption = '&Username:'
FocusControl = txtUsername
end
object sLabel3: TsLabel
Left = 17
Top = 99
Width = 89
Height = 18
Alignment = taRightJustify
AutoSize = False
Caption = '&Password:'
FocusControl = txtPassword
end
object sLabel4: TsLabel
Left = 17
Top = 131
Width = 89
Height = 18
Alignment = taRightJustify
AutoSize = False
Caption = 'P&ort:'
FocusControl = txtPort
end
object sLabel5: TsLabel
Left = 17
Top = 163
Width = 89
Height = 18
Alignment = taRightJustify
AutoSize = False
Caption = '&Folder:'
FocusControl = txtFolder
end
object sLabel6: TsLabel
Left = 3
Top = 192
Width = 103
Height = 18
Alignment = taRightJustify
AutoSize = False
Caption = 'Connection:'
FocusControl = txtFolder
end
object txtHost: TsEdit
Left = 112
Top = 32
Width = 374
Height = 26
Anchors = [akLeft, akTop, akRight]
Color = 4804169
Font.Charset = DEFAULT_CHARSET
Font.Color = 13816530
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 0
ExplicitWidth = 529
end
object txtUsername: TsEdit
Left = 112
Top = 64
Width = 249
Height = 26
Color = 4804169
Font.Charset = DEFAULT_CHARSET
Font.Color = 13816530
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 1
end
object txtPassword: TsEdit
Left = 112
Top = 96
Width = 249
Height = 26
Color = 4804169
Font.Charset = DEFAULT_CHARSET
Font.Color = 13816530
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 2
end
object txtPort: TsSpinEdit
Left = 112
Top = 128
Width = 96
Height = 26
Color = 4804169
Font.Charset = DEFAULT_CHARSET
Font.Color = 13816530
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 3
Text = '21'
MaxValue = 64399
MinValue = 1
Value = 21
end
object txtFolder: TsEdit
Left = 112
Top = 160
Width = 374
Height = 26
Anchors = [akLeft, akTop, akRight]
Color = 4804169
Font.Charset = DEFAULT_CHARSET
Font.Color = 13816530
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 4
Text = '/'
ExplicitWidth = 529
end
object chkPassive: TsCheckBox
Left = 112
Top = 192
Width = 93
Height = 21
Caption = 'Passive'
TabOrder = 5
ImgChecked = 0
ImgUnchecked = 0
end
end
object sPanel1: TsPanel
Left = 0
Top = 239
Width = 524
Height = 50
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
ExplicitTop = 228
ExplicitWidth = 679
DesignSize = (
524
50)
object btnCancel: TsButton
Left = 352
Top = 10
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 0
ExplicitLeft = 507
end
object btnApply: TsButton
Left = 433
Top = 10
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Apply'
ModalResult = 1
TabOrder = 1
OnClick = btnApplyClick
ExplicitLeft = 588
end
end
end