⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.dfm

📁 这是一套全面的网络组件
💻 DFM
字号:
object MainForm: TMainForm
  Left = 192
  Top = 114
  BorderStyle = bsDialog
  Caption = 'Clever POP3 Server'
  ClientHeight = 385
  ClientWidth = 438
  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 = 152
    Width = 18
    Height = 13
    Caption = 'Log'
  end
  object Label2: TLabel
    Left = 8
    Top = 64
    Width = 19
    Height = 13
    Caption = 'Port'
  end
  object Label3: TLabel
    Left = 8
    Top = 92
    Width = 39
    Height = 13
    Caption = 'Root Dir'
  end
  object Label4: TLabel
    Left = 8
    Top = 8
    Width = 367
    Height = 26
    Caption = 
      'This is a sample POP3 server. You can use any mail client with P' +
      'OP3 support to connect to this server.'
    WordWrap = True
  end
  object Label5: TLabel
    Left = 8
    Top = 40
    Width = 375
    Height = 13
    Caption = 
      'Please use the "CleverTester" user name and "clevertester" passw' +
      'ord to log-in.'
    WordWrap = True
  end
  object btnStart: TButton
    Left = 56
    Top = 120
    Width = 75
    Height = 25
    Caption = 'Start'
    TabOrder = 2
    OnClick = btnStartClick
  end
  object btnStop: TButton
    Left = 144
    Top = 120
    Width = 75
    Height = 25
    Caption = 'Stop'
    TabOrder = 3
    OnClick = btnStopClick
  end
  object memLog: TMemo
    Left = 0
    Top = 176
    Width = 438
    Height = 209
    Align = alBottom
    ReadOnly = True
    ScrollBars = ssVertical
    TabOrder = 4
  end
  object edtPort: TEdit
    Left = 56
    Top = 64
    Width = 161
    Height = 21
    TabOrder = 0
    Text = '110'
  end
  object edtRootDir: TEdit
    Left = 56
    Top = 92
    Width = 353
    Height = 21
    TabOrder = 1
    Text = 'C:\CleverMailBox\'
  end
  object clPop3FileHandler1: TclPop3FileHandler
    Server = clPop3Server1
    Left = 296
    Top = 128
  end
  object clPop3Server1: TclPop3Server
    ServerName = 'Clever Internet Suite POP3 service'
    OnStart = clPop3Server1Start
    OnStop = clPop3Server1Stop
    OnAcceptConnection = clPop3Server1AcceptConnection
    OnCloseConnection = clPop3Server1CloseConnection
    OnReceiveCommand = clPop3Server1ReceiveCommand
    OnSendResponse = clPop3Server1SendResponse
    UserAccounts = <
      item
        UserName = 'CleverTester'
        Password = 'clevertester'
        DisplayName = 'CleverTester'
      end>
    HelpText.Strings = (
      'Valid commands:'
      'USER,'
      'PASS,'
      'APOP,'
      'AUTH,'
      'QUIT,'
      'NOOP,'
      'HELP,'
      'STAT,'
      'RETR,'
      'TOP,'
      'DELE,'
      'RSET,'
      'LIST,'
      'UIDL,'
      'STLS')
    OnLoginAuthenticate = clPop3Server1LoginAuthenticate
    OnAPopAuthenticate = clPop3Server1APopAuthenticate
    Left = 256
    Top = 128
  end
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -