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

📄 unit1.dfm

📁 《Internet与TCP/IP程序设计之C++ Builder高手》配书盘光盘内容:书中的范例和运行范例所需的图像素材、网页素材等。
💻 DFM
字号:
object Form1: TForm1
  Left = 232
  Top = 112
  Width = 294
  Height = 196
  Caption = 'Server'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnClose = FormClose
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 20
    Top = 25
    Width = 28
    Height = 13
    Caption = 'Send:'
  end
  object Label2: TLabel
    Left = 20
    Top = 60
    Width = 20
    Height = 13
    Caption = 'Get:'
  end
  object txtSend: TEdit
    Left = 70
    Top = 20
    Width = 201
    Height = 21
    TabOrder = 0
    OnKeyDown = txtSendKeyDown
  end
  object Button2: TButton
    Left = 163
    Top = 100
    Width = 76
    Height = 31
    Caption = 'Disconnect'
    Enabled = False
    TabOrder = 3
    OnClick = Button2Click
  end
  object txtGet: TEdit
    Left = 70
    Top = 55
    Width = 201
    Height = 21
    TabOrder = 1
  end
  object StatusBar1: TStatusBar
    Left = 0
    Top = 144
    Width = 286
    Height = 25
    Panels = <
      item
        Width = 50
      end>
    SimplePanel = False
  end
  object Button1: TButton
    Left = 48
    Top = 100
    Width = 81
    Height = 31
    Caption = 'Listen'
    TabOrder = 2
    OnClick = Button1Click
  end
  object ServerSocket: TServerSocket
    Active = False
    Port = 4000
    ServerType = stNonBlocking
    OnListen = ServerSocketListen
    OnAccept = ServerSocketAccept
    OnClientConnect = ServerSocketClientConnect
    OnClientDisconnect = ServerSocketClientDisconnect
    OnClientRead = ServerSocketClientRead
    OnClientError = ServerSocketClientError
    Left = 250
    Top = 100
  end
end

⌨️ 快捷键说明

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