home *** CD-ROM | disk | FTP | other *** search
/ Freesoft 1999 February / Freesoft_1999-02_cd.bin / Recenz / Internet / NetTimePro / Mpw32.dl_ / Mpw32.dl / RCDATA / TFTPFORM / TFTPFORM.txt
Text File  |  1997-05-14  |  2KB  |  103 lines

  1. object FTPForm: TFTPForm
  2.   Left = 293
  3.   Top = 120
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'FTPForm'
  7.   ClientHeight = 219
  8.   ClientWidth = 325
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnClose = FormClose
  15.   OnCloseQuery = FormCloseQuery
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   OnPaint = FormPaint
  19.   OnShow = FormShow
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object Frame: TGroupBox
  23.     Left = 8
  24.     Top = 12
  25.     Width = 309
  26.     Height = 168
  27.     Caption = 'DOWNLOADING'
  28.     Font.Color = clMaroon
  29.     Font.Height = -13
  30.     Font.Name = 'MS Sans Serif'
  31.     Font.Style = [fsBold]
  32.     ParentFont = False
  33.     TabOrder = 0
  34.     object Gauge: TMPWGauge
  35.       Left = 8
  36.       Top = 140
  37.       Width = 293
  38.       Height = 20
  39.       Font.Color = clMaroon
  40.       Font.Height = -11
  41.       Font.Name = 'MS Sans Serif'
  42.       Font.Style = []
  43.       ForeColor = clAqua
  44.       ParentFont = False
  45.       Progress = 0
  46.     end
  47.     object Memo: TMemo
  48.       Left = 8
  49.       Top = 24
  50.       Width = 293
  51.       Height = 113
  52.       TabStop = False
  53.       Font.Color = clBlack
  54.       Font.Height = -11
  55.       Font.Name = 'MS Sans Serif'
  56.       Font.Style = []
  57.       ParentFont = False
  58.       ReadOnly = True
  59.       ScrollBars = ssVertical
  60.       TabOrder = 0
  61.     end
  62.   end
  63.   object CancelButton: TButton
  64.     Left = 260
  65.     Top = 188
  66.     Width = 57
  67.     Height = 25
  68.     Hint = 'Cancel'
  69.     Cancel = True
  70.     Caption = '&Cancel'
  71.     ModalResult = 2
  72.     TabOrder = 1
  73.     OnClick = CancelButtonClick
  74.   end
  75.   object NetServer: TMPGNetServer
  76.     OnInfo = NetServerInfo
  77.     OnDisconnect = NetServerDisconnect
  78.     OnRead = NetServerRead
  79.     Left = 36
  80.     Top = 188
  81.   end
  82.   object NetClient: TMPGNetClient
  83.     Address = 'ftp.braintree.com'
  84.     Port = '21'
  85.     TimeOut = 10
  86.     OnInfo = NetClientInfo
  87.     OnConnect = NetClientConnect
  88.     OnTimeOut = NetClientTimeOut
  89.     OnDisconnect = NetClientDisconnect
  90.     OnRead = NetClientRead
  91.     OnWrite = NetClientWrite
  92.     Left = 8
  93.     Top = 188
  94.   end
  95.   object Timer: TTimer
  96.     Enabled = False
  97.     Interval = 250
  98.     OnTimer = TimerTimer
  99.     Left = 64
  100.     Top = 188
  101.   end
  102. end
  103.