www.pudn.com > C++ Builder 6 编程实例教程.zip > MyClient.dfm, change:2002-04-14,size:1628b


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