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

  1. object Form1: TForm1
  2.   Left = 200
  3.   Top = 108
  4.   Width = 435
  5.   Height = 300
  6.   Caption = 'Stream Demo'
  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 = True
  14.   OnClose = FormClose
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Image1: TImage
  18.     Left = 0
  19.     Top = 0
  20.     Width = 427
  21.     Height = 181
  22.     Align = alClient
  23.   end
  24.   object Panel1: TPanel
  25.     Left = 0
  26.     Top = 181
  27.     Width = 427
  28.     Height = 73
  29.     Align = alBottom
  30.     TabOrder = 0
  31.     object Label1: TLabel
  32.       Left = 189
  33.       Top = 46
  34.       Width = 34
  35.       Height = 13
  36.       Caption = 'Name: '
  37.     end
  38.     object Label2: TLabel
  39.       Left = 32
  40.       Top = 11
  41.       Width = 68
  42.       Height = 13
  43.       Caption = 'Remote Host: '
  44.     end
  45.     object Button1: TButton
  46.       Left = 16
  47.       Top = 40
  48.       Width = 75
  49.       Height = 25
  50.       Caption = 'Send'
  51.       TabOrder = 0
  52.       OnClick = Button1Click
  53.     end
  54.     object Button2: TButton
  55.       Left = 104
  56.       Top = 40
  57.       Width = 75
  58.       Height = 25
  59.       Caption = 'Load'
  60.       TabOrder = 1
  61.       OnClick = Button2Click
  62.     end
  63.     object Edit1: TEdit
  64.       Left = 224
  65.       Top = 42
  66.       Width = 121
  67.       Height = 21
  68.       TabOrder = 2
  69.       Text = 'NetMasters'
  70.     end
  71.     object Edit2: TEdit
  72.       Left = 104
  73.       Top = 7
  74.       Width = 121
  75.       Height = 21
  76.       TabOrder = 3
  77.       Text = '127.0.0.1'
  78.     end
  79.   end
  80.   object StatusBar1: TStatusBar
  81.     Left = 0
  82.     Top = 254
  83.     Width = 427
  84.     Height = 19
  85.     Panels = <>
  86.     SimplePanel = True
  87.   end
  88.   object NMStrm1: TNMStrm
  89.     Port = 6711
  90.     ReportLevel = 0
  91.     OnDisconnect = NMStrm1Disconnect
  92.     OnConnect = NMStrm1Connect
  93.     OnInvalidHost = NMStrm1InvalidHost
  94.     OnHostResolved = NMStrm1HostResolved
  95.     OnStatus = NMStrm1Status
  96.     OnConnectionFailed = NMStrm1ConnectionFailed
  97.     OnPacketSent = NMStrm1PacketSent
  98.     OnMessageSent = NMStrm1MessageSent
  99.     Left = 364
  100.     Top = 216
  101.   end
  102.   object NMStrmServ1: TNMStrmServ
  103.     Port = 6711
  104.     ReportLevel = 0
  105.     OnStatus = NMStrmServ1Status
  106.     OnClientContact = NMStrmServ1ClientContact
  107.     OnMSG = NMStrmServ1MSG
  108.     Left = 392
  109.     Top = 216
  110.   end
  111.   object OpenPictureDialog1: TOpenPictureDialog
  112.     Filter = 
  113.       'All (*.bmp;*.ico;*.emf;*.wmf)|*.bmp;*.ico;*.emf;*.wmf|Bitmaps (*' +
  114.       '.bmp)|*.bmp|Icons (*.ico)|*.ico|Enhanced Metafiles (*.emf)|*.emf' +
  115.       '|Metafiles (*.wmf)|*.wmf'
  116.     Title = 'Pick image to send'
  117.     Left = 384
  118.     Top = 184
  119.   end
  120. end
  121.