home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Demos / FastNet / Echo / ECHODEM.DFM / ECHODEM.txt
Encoding:
Text File  |  1999-08-11  |  2.7 KB  |  147 lines

  1. object Form1: TForm1
  2.   Left = 202
  3.   Top = 108
  4.   Width = 501
  5.   Height = 303
  6.   Caption = 'Echo Demo'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -14
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = True
  14.   PixelsPerInch = 120
  15.   TextHeight = 16
  16.   object Label1: TLabel
  17.     Left = 105
  18.     Top = 158
  19.     Width = 81
  20.     Height = 16
  21.     Caption = 'Text to Send: '
  22.   end
  23.   object Label2: TLabel
  24.     Left = 208
  25.     Top = 220
  26.     Width = 91
  27.     Height = 16
  28.     Caption = 'Elapsed Time: '
  29.   end
  30.   object Label5: TLabel
  31.     Left = 69
  32.     Top = 192
  33.     Width = 116
  34.     Height = 16
  35.     Caption = 'Text Echoed Back: '
  36.   end
  37.   object Edit1: TEdit
  38.     Left = 188
  39.     Top = 153
  40.     Width = 149
  41.     Height = 24
  42.     TabOrder = 0
  43.   end
  44.   object Button1: TButton
  45.     Left = 348
  46.     Top = 149
  47.     Width = 93
  48.     Height = 31
  49.     Caption = 'Send'
  50.     TabOrder = 1
  51.     OnClick = Button1Click
  52.   end
  53.   object Panel1: TPanel
  54.     Left = 0
  55.     Top = 0
  56.     Width = 493
  57.     Height = 139
  58.     Align = alTop
  59.     TabOrder = 2
  60.     object Label3: TLabel
  61.       Left = 144
  62.       Top = 10
  63.       Width = 28
  64.       Height = 16
  65.       Caption = 'Host'
  66.     end
  67.     object Label4: TLabel
  68.       Left = 148
  69.       Top = 39
  70.       Width = 24
  71.       Height = 16
  72.       Caption = 'Port'
  73.     end
  74.     object Edit2: TEdit
  75.       Left = 177
  76.       Top = 5
  77.       Width = 149
  78.       Height = 24
  79.       TabOrder = 0
  80.       Text = '128.6.13.3'
  81.     end
  82.     object Edit3: TEdit
  83.       Left = 177
  84.       Top = 34
  85.       Width = 41
  86.       Height = 24
  87.       TabOrder = 1
  88.       Text = '7'
  89.     end
  90.     object Button2: TButton
  91.       Left = 128
  92.       Top = 89
  93.       Width = 92
  94.       Height = 30
  95.       Caption = 'Connect'
  96.       TabOrder = 2
  97.       OnClick = Button2Click
  98.     end
  99.     object Button3: TButton
  100.       Left = 256
  101.       Top = 89
  102.       Width = 92
  103.       Height = 30
  104.       Caption = 'Disconnect'
  105.       TabOrder = 3
  106.       OnClick = Button3Click
  107.     end
  108.   end
  109.   object StatusBar1: TStatusBar
  110.     Left = 0
  111.     Top = 253
  112.     Width = 493
  113.     Height = 23
  114.     Panels = <>
  115.     SimplePanel = True
  116.   end
  117.   object Edit4: TEdit
  118.     Left = 187
  119.     Top = 187
  120.     Width = 149
  121.     Height = 24
  122.     TabOrder = 4
  123.   end
  124.   object Button4: TButton
  125.     Left = 348
  126.     Top = 187
  127.     Width = 93
  128.     Height = 31
  129.     Caption = 'Abort'
  130.     TabOrder = 5
  131.     OnClick = Button4Click
  132.   end
  133.   object NMEcho1: TNMEcho
  134.     Port = 7
  135.     ReportLevel = 0
  136.     OnDisconnect = NMEcho1Disconnect
  137.     OnConnect = NMEcho1Connect
  138.     OnInvalidHost = NMEcho1InvalidHost
  139.     OnHostResolved = NMEcho1HostResolved
  140.     OnStatus = NMEcho1Status
  141.     OnConnectionFailed = NMEcho1ConnectionFailed
  142.     OnConnectionRequired = NMEcho1ConnectionRequired
  143.     Left = 8
  144.     Top = 8
  145.   end
  146. end
  147.