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

Delphi/CppBuilder

开发平台:

C++ Builder

  1. object ServerForm: TServerForm
  2.   Left = 192
  3.   Top = 107
  4.   Width = 544
  5.   Height = 297
  6.   Caption = 'ServerForm'
  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 = 0
  19.     Width = 72
  20.     Height = 13
  21.     Caption = '发送给客户端'
  22.   end
  23.   object Label2: TLabel
  24.     Left = 248
  25.     Top = 0
  26.     Width = 72
  27.     Height = 13
  28.     Caption = '从客户端接收'
  29.   end
  30.   object Memo1: TMemo
  31.     Left = 8
  32.     Top = 16
  33.     Width = 233
  34.     Height = 209
  35.     Lines.Strings = (
  36.       'Memo1')
  37.     TabOrder = 0
  38.     OnChange = Memo1Change
  39.   end
  40.   object Memo2: TMemo
  41.     Left = 248
  42.     Top = 16
  43.     Width = 273
  44.     Height = 209
  45.     Lines.Strings = (
  46.       'Memo2')
  47.     TabOrder = 1
  48.   end
  49.   object Button1: TButton
  50.     Left = 56
  51.     Top = 240
  52.     Width = 75
  53.     Height = 25
  54.     Caption = '发送数据'
  55.     TabOrder = 2
  56.     OnClick = Button1Click
  57.   end
  58.   object Button2: TButton
  59.     Left = 424
  60.     Top = 232
  61.     Width = 75
  62.     Height = 25
  63.     Caption = '关闭 '
  64.     TabOrder = 3
  65.     OnClick = Button2Click
  66.   end
  67.   object DdeServerConv1: TDdeServerConv
  68.     Left = 152
  69.     Top = 120
  70.   end
  71.   object DdeServerItem1: TDdeServerItem
  72.     ServerConv = DdeServerConv1
  73.     OnPokeData = DdeServerItem1PokeData
  74.     Left = 192
  75.     Top = 120
  76.   end
  77. end