-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmain.dfm
263 lines (263 loc) · 5.28 KB
/
main.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
inherited MainForm: TMainForm
Left = 247
Top = 62
Caption = 'Ftp Client Throttling - Sample'
OnDestroy = FormDestroy
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
inherited pnlMain: TPanel
object Label1: TLabel
Left = 12
Top = 77
Width = 36
Height = 13
Caption = 'IP/Host'
end
object Label2: TLabel
Left = 28
Top = 104
Width = 22
Height = 13
Caption = 'User'
end
object Label4: TLabel
Left = 223
Top = 104
Width = 46
Height = 13
Caption = 'Password'
end
object Label5: TLabel
Left = 11
Top = 132
Width = 40
Height = 13
Caption = 'Start Dir'
end
object Label6: TLabel
Left = 431
Top = 76
Width = 20
Height = 13
Caption = 'Port'
end
object Label7: TLabel
Left = 11
Top = 193
Width = 62
Height = 13
Caption = 'Remote Host'
end
object Label8: TLabel
Left = 11
Top = 162
Width = 90
Height = 13
Caption = 'Throttling, Bits/sec'
end
object Label3: TLabel
Left = 16
Top = 8
Width = 390
Height = 26
Caption =
'This demo provides you with the ability to control the connectio' +
'n speed.'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
WordWrap = True
end
object Label9: TLabel
Left = 16
Top = 28
Width = 577
Height = 33
AutoSize = False
Caption =
'Please use the BitsPerSec property of the TclFTP component to ch' +
'ange the upper limit for throughput on the connection intercept.' +
' Zero value for this property switches off .'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
WordWrap = True
end
object ProgressBar: TProgressBar
Left = 0
Top = 346
Width = 623
Height = 17
Align = alBottom
TabOrder = 10
end
object edtServer: TEdit
Left = 53
Top = 74
Width = 356
Height = 21
TabOrder = 0
Text = 'localhost'
end
object edtPort: TEdit
Left = 455
Top = 74
Width = 67
Height = 21
TabOrder = 1
Text = '21'
end
object edtUser: TEdit
Left = 53
Top = 101
Width = 137
Height = 21
TabOrder = 2
Text = 'CleverTester'
end
object edtPassword: TEdit
Left = 272
Top = 101
Width = 137
Height = 21
PasswordChar = '*'
TabOrder = 3
Text = 'clevertester'
end
object edtStartDir: TEdit
Left = 53
Top = 128
Width = 356
Height = 21
TabOrder = 4
end
object cbPassiveMode: TCheckBox
Left = 437
Top = 103
Width = 97
Height = 17
Caption = 'Passive Mode'
TabOrder = 5
end
object cbAsciiMode: TCheckBox
Left = 437
Top = 130
Width = 97
Height = 17
Caption = 'ASCII Mode'
TabOrder = 6
end
object btnLogin: TButton
Left = 537
Top = 72
Width = 75
Height = 25
Caption = 'Login'
TabOrder = 11
OnClick = btnLoginClick
end
object btnLogout: TButton
Left = 537
Top = 102
Width = 75
Height = 25
Caption = 'Logout'
TabOrder = 12
OnClick = btnLogoutClick
end
object btnOpenDir: TButton
Left = 537
Top = 151
Width = 75
Height = 25
Caption = 'Open Dir'
TabOrder = 13
OnClick = btnOpenDirClick
end
object btnGoUp: TButton
Left = 537
Top = 181
Width = 75
Height = 25
Caption = 'Go Up'
TabOrder = 14
OnClick = btnGoUpClick
end
object btnDownload: TButton
Left = 537
Top = 222
Width = 75
Height = 25
Caption = 'Download...'
TabOrder = 15
OnClick = btnDownloadClick
end
object btnUpload: TButton
Left = 537
Top = 252
Width = 75
Height = 25
Caption = 'Upload...'
TabOrder = 16
OnClick = btnUploadClick
end
object btnAbort: TButton
Left = 537
Top = 307
Width = 75
Height = 25
Caption = 'Abort'
TabOrder = 17
OnClick = btnAbortClick
end
object lbList: TListBox
Left = 11
Top = 210
Width = 518
Height = 124
ItemHeight = 13
Sorted = True
TabOrder = 9
OnDblClick = btnOpenDirClick
end
object edtBitsPerSec: TEdit
Left = 104
Top = 160
Width = 241
Height = 21
TabOrder = 7
Text = '3000000'
end
object btnApply: TButton
Left = 352
Top = 157
Width = 57
Height = 25
Caption = 'Apply'
TabOrder = 8
OnClick = btnApplyClick
end
end
object clFTP: TclFtp
OnProgress = clFTPProgress
OnDirectoryListing = clFTPDirectoryListing
Left = 274
Top = 218
end
object OpenDialog: TOpenDialog
Options = [ofHideReadOnly, ofFileMustExist, ofEnableSizing]
Left = 434
Top = 220
end
object SaveDialog: TSaveDialog
Left = 352
Top = 222
end
end