MyClient.dfm
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:2k
源码类别:

Delphi/CppBuilder

开发平台:

C++ Builder

  1. object ClientForm: TClientForm
  2.   Left = 162
  3.   Top = 87
  4.   Width = 544
  5.   Height = 338
  6.   Caption = 'ClientForm'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 8
  18.     Top = 8
  19.     Width = 72
  20.     Height = 13
  21.     Caption = '从服务器接收'
  22.   end
  23.   object Label2: TLabel
  24.     Left = 312
  25.     Top = 8
  26.     Width = 72
  27.     Height = 13
  28.     Caption = '发送给服务器'
  29.   end
  30.   object Memo1: TMemo
  31.     Left = 8
  32.     Top = 32
  33.     Width = 217
  34.     Height = 265
  35.     Lines.Strings = (
  36.       'Memo1')
  37.     TabOrder = 0
  38.   end
  39.   object Memo2: TMemo
  40.     Left = 312
  41.     Top = 32
  42.     Width = 217
  43.     Height = 265
  44.     Lines.Strings = (
  45.       'Memo2')
  46.     TabOrder = 1
  47.   end
  48.   object Button1: TButton
  49.     Left = 232
  50.     Top = 56
  51.     Width = 75
  52.     Height = 25
  53.     Caption = '接收自服务器'
  54.     TabOrder = 2
  55.     OnClick = Button1Click
  56.   end
  57.   object Button2: TButton
  58.     Left = 232
  59.     Top = 144
  60.     Width = 75
  61.     Height = 25
  62.     Caption = '回传给服务器'
  63.     TabOrder = 3
  64.     OnClick = Button2Click
  65.   end
  66.   object Button3: TButton
  67.     Left = 232
  68.     Top = 232
  69.     Width = 75
  70.     Height = 25
  71.     Caption = '关闭'
  72.     TabOrder = 4
  73.     OnClick = Button3Click
  74.   end
  75.   object DdeClientItem1: TDdeClientItem
  76.     DdeConv = DdeClientConv1
  77.     OnChange = DdeClientItem1Change
  78.     Left = 136
  79.     Top = 176
  80.   end
  81.   object DdeClientConv1: TDdeClientConv
  82.     Left = 144
  83.     Top = 144
  84.   end
  85. end