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

  1. object Form1: TForm1
  2.   Left = 204
  3.   Top = 130
  4.   Width = 435
  5.   Height = 300
  6.   Caption = 'UDP 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 PageControl1: TPageControl
  17.     Left = 0
  18.     Top = 0
  19.     Width = 427
  20.     Height = 250
  21.     ActivePage = TabSheet1
  22.     Align = alClient
  23.     TabOrder = 0
  24.     object TabSheet1: TTabSheet
  25.       Caption = 'Sending'
  26.       object Label1: TLabel
  27.         Left = 68
  28.         Top = 16
  29.         Width = 34
  30.         Height = 16
  31.         Caption = 'Host: '
  32.       end
  33.       object Label2: TLabel
  34.         Left = 71
  35.         Top = 46
  36.         Width = 30
  37.         Height = 16
  38.         Caption = 'Port: '
  39.       end
  40.       object Label3: TLabel
  41.         Left = 59
  42.         Top = 114
  43.         Width = 81
  44.         Height = 16
  45.         Caption = 'Text to Send: '
  46.       end
  47.       object Edit1: TEdit
  48.         Left = 105
  49.         Top = 11
  50.         Width = 149
  51.         Height = 24
  52.         TabOrder = 0
  53.         Text = '127.0.0.1'
  54.       end
  55.       object Edit2: TEdit
  56.         Left = 105
  57.         Top = 41
  58.         Width = 44
  59.         Height = 24
  60.         TabOrder = 1
  61.         Text = '6767'
  62.       end
  63.       object Edit3: TEdit
  64.         Left = 144
  65.         Top = 110
  66.         Width = 149
  67.         Height = 24
  68.         TabOrder = 2
  69.       end
  70.       object Button1: TButton
  71.         Left = 300
  72.         Top = 106
  73.         Width = 93
  74.         Height = 31
  75.         Caption = 'Send'
  76.         TabOrder = 3
  77.         OnClick = Button1Click
  78.       end
  79.     end
  80.     object TabSheet2: TTabSheet
  81.       Caption = 'Receiving'
  82.       object Panel1: TPanel
  83.         Left = 0
  84.         Top = 0
  85.         Width = 419
  86.         Height = 50
  87.         Align = alTop
  88.         TabOrder = 0
  89.         object Button2: TButton
  90.           Left = 212
  91.           Top = 10
  92.           Width = 92
  93.           Height = 31
  94.           Caption = 'Clear Memo'
  95.           TabOrder = 0
  96.           OnClick = Button2Click
  97.         end
  98.       end
  99.       object Memo1: TMemo
  100.         Left = 0
  101.         Top = 50
  102.         Width = 419
  103.         Height = 169
  104.         Align = alClient
  105.         TabOrder = 1
  106.       end
  107.     end
  108.   end
  109.   object StatusBar1: TStatusBar
  110.     Left = 0
  111.     Top = 250
  112.     Width = 427
  113.     Height = 23
  114.     Panels = <>
  115.     SimplePanel = True
  116.   end
  117.   object NMUDP1: TNMUDP
  118.     RemotePort = 6767
  119.     LocalPort = 6767
  120.     ReportLevel = 16
  121.     OnDataReceived = NMUDP1DataReceived
  122.     OnDataSend = NMUDP1DataSend
  123.     OnStatus = NMUDP1Status
  124.     OnInvalidHost = NMUDP1InvalidHost
  125.     Left = 383
  126.     Top = 26
  127.   end
  128. end
  129.