myclient.dfm

来自「里面是c++builder6编程实例教程里面的所有源代码,有11章」· DFM 代码 · 共 86 行

DFM
86
字号
object ClientForm: TClientForm
  Left = 162
  Top = 87
  Width = 544
  Height = 338
  Caption = 'ClientForm'
  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 = 8
    Top = 8
    Width = 72
    Height = 13
    Caption = '从服务器接收'
  end
  object Label2: TLabel
    Left = 312
    Top = 8
    Width = 72
    Height = 13
    Caption = '发送给服务器'
  end
  object Memo1: TMemo
    Left = 8
    Top = 32
    Width = 217
    Height = 265
    Lines.Strings = (
      'Memo1')
    TabOrder = 0
  end
  object Memo2: TMemo
    Left = 312
    Top = 32
    Width = 217
    Height = 265
    Lines.Strings = (
      'Memo2')
    TabOrder = 1
  end
  object Button1: TButton
    Left = 232
    Top = 56
    Width = 75
    Height = 25
    Caption = '接收自服务器'
    TabOrder = 2
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 232
    Top = 144
    Width = 75
    Height = 25
    Caption = '回传给服务器'
    TabOrder = 3
    OnClick = Button2Click
  end
  object Button3: TButton
    Left = 232
    Top = 232
    Width = 75
    Height = 25
    Caption = '关闭'
    TabOrder = 4
    OnClick = Button3Click
  end
  object DdeClientItem1: TDdeClientItem
    DdeConv = DdeClientConv1
    OnChange = DdeClientItem1Change
    Left = 136
    Top = 176
  end
  object DdeClientConv1: TDdeClientConv
    Left = 144
    Top = 144
  end
end

⌨️ 快捷键说明

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