tcpmsgserver.dfm

来自「使用delphi自带的控件」· DFM 代码 · 共 44 行

DFM
44
字号
object dmeMsgServer: TdmeMsgServer
  OldCreateOrder = True
  OnCreate = DataModuleCreate
  Left = 302
  Top = 136
  Height = 333
  Width = 539
  object tcpMsgServer: TIdTCPServer
    Bindings = <>
    CommandHandlers = <
      item
        CmdDelimiter = ' '
        Command = 'Login'
        Disconnect = False
        Name = 'Login'
        OnCommand = tcpMsgServerLoginCommand
        ParamDelimiter = ' '
        ReplyExceptionCode = 0
        ReplyNormal.NumericCode = 0
        Tag = 0
      end
      item
        CmdDelimiter = ' '
        Command = 'Logoff'
        Disconnect = False
        Name = 'Logoff'
        OnCommand = tcpMsgServerLogoffCommand
        ParamDelimiter = ' '
        ReplyExceptionCode = 0
        ReplyNormal.NumericCode = 0
        Tag = 0
      end>
    DefaultPort = 10555
    Greeting.NumericCode = 0
    MaxConnectionReply.NumericCode = 0
    OnNoCommandHandler = tcpMsgServerNoCommandHandler
    ReplyExceptionCode = 0
    ReplyTexts = <>
    ReplyUnknownCommand.NumericCode = 0
    Left = 80
    Top = 56
  end
end

⌨️ 快捷键说明

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