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

📄 unit1.dfm

📁 《Internet与TCP/IP程序设计之C++ Builder高手》配书盘光盘内容:书中的范例和运行范例所需的图像素材、网页素材等。
💻 DFM
字号:
object Form1: TForm1
  Left = 302
  Top = 135
  Width = 276
  Height = 186
  Caption = 'Client'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 15
    Top = 20
    Width = 28
    Height = 13
    Caption = 'Send:'
  end
  object Label2: TLabel
    Left = 15
    Top = 55
    Width = 20
    Height = 13
    Caption = 'Get:'
  end
  object txtSend: TEdit
    Left = 56
    Top = 15
    Width = 201
    Height = 21
    TabOrder = 0
    OnKeyDown = txtSendKeyDown
  end
  object Button1: TButton
    Left = 96
    Top = 90
    Width = 76
    Height = 31
    Caption = 'Connect'
    TabOrder = 1
    OnClick = Button1Click
  end
  object txtGet: TEdit
    Left = 56
    Top = 50
    Width = 201
    Height = 21
    TabOrder = 2
  end
  object StatusBar1: TStatusBar
    Left = 0
    Top = 134
    Width = 268
    Height = 25
    Panels = <
      item
        Width = 50
      end>
    SimplePanel = False
  end
  object ClientSocket: TClientSocket
    Active = False
    Address = '127.0.0.1'
    ClientType = ctNonBlocking
    Port = 4000
    OnConnecting = ClientSocketConnecting
    OnConnect = ClientSocketConnect
    OnDisconnect = ClientSocketDisconnect
    OnRead = ClientSocketRead
    OnError = ClientSocketError
    Left = 25
    Top = 90
  end
end

⌨️ 快捷键说明

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