📄 main.dfm
字号:
object MainForm: TMainForm
Left = 192
Top = 114
BorderStyle = bsDialog
Caption = 'Clever FTP Server SSL / TLS'
ClientHeight = 399
ClientWidth = 488
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 192
Width = 18
Height = 13
Caption = 'Log'
end
object Label2: TLabel
Left = 8
Top = 112
Width = 19
Height = 13
Caption = 'Port'
end
object Label3: TLabel
Left = 8
Top = 140
Width = 39
Height = 13
Caption = 'Root Dir'
end
object Label4: TLabel
Left = 8
Top = 8
Width = 417
Height = 26
Caption =
'This is a sample FTP SSL / TLS server. You can use any SSL-enabl' +
'ed FTP client (such as TclFTP or SurgeFTP client to connect to t' +
'his server.'
WordWrap = True
end
object Label5: TLabel
Left = 8
Top = 80
Width = 375
Height = 13
Caption =
'Please use the "CleverTester" user name and "clevertester" passw' +
'ord to log-in.'
WordWrap = True
end
object Label6: TLabel
Left = 8
Top = 40
Width = 456
Height = 26
Caption =
'This server uses self-signed server certificate to establish the' +
' SSL connection. In real application you will need to request a ' +
'certificate from trusted issuer or use your own self-signed cert' +
'ificate.'
WordWrap = True
end
object Label7: TLabel
Left = 152
Top = 112
Width = 81
Height = 13
Caption = 'SSL / TLS Mode'
end
object btnStart: TButton
Left = 56
Top = 176
Width = 75
Height = 25
Caption = 'Start'
TabOrder = 3
OnClick = btnStartClick
end
object btnStop: TButton
Left = 144
Top = 176
Width = 75
Height = 25
Caption = 'Stop'
TabOrder = 4
OnClick = btnStopClick
end
object memLog: TMemo
Left = 0
Top = 210
Width = 488
Height = 189
Align = alBottom
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 5
end
object edtPort: TEdit
Left = 56
Top = 112
Width = 57
Height = 21
TabOrder = 0
Text = '990'
end
object edtRootDir: TEdit
Left = 56
Top = 140
Width = 409
Height = 21
TabOrder = 2
Text = 'C:\CleverFtpServer\'
end
object cbUseTls: TComboBox
Left = 240
Top = 112
Width = 225
Height = 21
Style = csDropDownList
ItemHeight = 13
ItemIndex = 1
TabOrder = 1
Text = 'Implicit'
Items.Strings = (
'None'
'Implicit'
'Allow Explicit'
'Require Explicit')
end
object clFtpServer1: TclFtpServer
ServerName = 'Clever Internet Suite FTP service'
OnStart = clFtpServer1Start
OnStop = clFtpServer1Stop
OnAcceptConnection = clFtpServer1AcceptConnection
OnCloseConnection = clFtpServer1CloseConnection
OnGetCertificate = clFtpServer1GetCertificate
OnReceiveCommand = clFtpServer1ReceiveCommand
OnSendResponse = clFtpServer1SendResponse
UserAccounts = <
item
UserName = 'CleverTester'
Password = 'clevertester'
DisplayName = 'Clever Tester'
ReadOnlyAccess = False
end>
CaseInsensitive = True
AllowAnonymousAccess = True
OnAuthenticate = clFtpServer1Authenticate
Left = 232
Top = 176
end
object clFtpFileHandler1: TclFtpFileHandler
Server = clFtpServer1
Left = 272
Top = 176
end
object clCertificateStore1: TclCertificateStore
Left = 312
Top = 176
end
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -