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

📄 unit1.dfm

📁 《Internet与TCP/IP程序设计之C++ Builder高手》配书盘光盘内容:书中的范例和运行范例所需的图像素材、网页素材等。
💻 DFM
字号:
object Form1: TForm1
  Left = 170
  Top = 110
  Width = 277
  Height = 409
  Caption = 'Client'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object StatusBar1: TStatusBar
    Left = 0
    Top = 361
    Width = 269
    Height = 21
    Panels = <
      item
        Width = 50
      end>
    SimplePanel = False
  end
  object GroupBox1: TGroupBox
    Left = 6
    Top = 5
    Width = 256
    Height = 141
    Caption = 'Connection'
    TabOrder = 1
    object Label1: TLabel
      Left = 15
      Top = 28
      Width = 54
      Height = 13
      Caption = 'IP Address:'
    end
    object Label2: TLabel
      Left = 15
      Top = 63
      Width = 22
      Height = 13
      Caption = 'Port:'
    end
    object txtIP: TEdit
      Left = 75
      Top = 25
      Width = 166
      Height = 21
      ImeName = '智能ABC输入法'
      TabOrder = 0
      Text = '127.0.0.1'
    end
    object Button1: TButton
      Left = 85
      Top = 95
      Width = 87
      Height = 31
      Caption = 'Connect'
      TabOrder = 2
      OnClick = Button1Click
    end
    object txtPort: TEdit
      Left = 75
      Top = 60
      Width = 166
      Height = 21
      ImeName = '智能ABC输入法'
      TabOrder = 1
      Text = '4000'
    end
  end
  object GroupBox2: TGroupBox
    Left = 5
    Top = 150
    Width = 256
    Height = 111
    Caption = 'Command'
    TabOrder = 2
    object btnOpen: TButton
      Left = 20
      Top = 25
      Width = 96
      Height = 31
      Caption = 'Open Server CD'
      TabOrder = 0
      OnClick = btnOpenClick
    end
    object btnClose: TButton
      Left = 140
      Top = 25
      Width = 96
      Height = 31
      Caption = 'Close Server CD'
      TabOrder = 1
      OnClick = btnCloseClick
    end
    object btnTaskBar: TButton
      Left = 20
      Top = 65
      Width = 96
      Height = 31
      Caption = 'Server TaskBar'
      TabOrder = 2
      OnClick = btnTaskBarClick
    end
    object btnSound: TButton
      Left = 140
      Top = 65
      Width = 96
      Height = 31
      Caption = 'Play Sound'
      TabOrder = 3
      OnClick = btnSoundClick
    end
  end
  object GroupBox3: TGroupBox
    Left = 5
    Top = 265
    Width = 256
    Height = 86
    Caption = 'Status'
    TabOrder = 3
    object Memo1: TMemo
      Left = 15
      Top = 20
      Width = 226
      Height = 51
      ImeName = '智能ABC输入法'
      ScrollBars = ssVertical
      TabOrder = 0
    end
  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 = 210
    Top = 105
  end
end

⌨️ 快捷键说明

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