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

  1. object RegForm: TRegForm
  2.   Left = 298
  3.   Top = 115
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'RegForm'
  7.   ClientHeight = 195
  8.   ClientWidth = 325
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   OnPaint = FormPaint
  17.   OnShow = FormShow
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Frame: TGroupBox
  21.     Left = 8
  22.     Top = 12
  23.     Width = 309
  24.     Height = 145
  25.     Caption = 'UPLOADING DATA'
  26.     Font.Color = clMaroon
  27.     Font.Height = -13
  28.     Font.Name = 'MS Sans Serif'
  29.     Font.Style = [fsBold]
  30.     ParentFont = False
  31.     TabOrder = 0
  32.     object Memo: TMemo
  33.       Left = 8
  34.       Top = 24
  35.       Width = 293
  36.       Height = 113
  37.       Font.Color = clBlack
  38.       Font.Height = -11
  39.       Font.Name = 'MS Sans Serif'
  40.       Font.Style = []
  41.       ParentFont = False
  42.       ReadOnly = True
  43.       ScrollBars = ssVertical
  44.       TabOrder = 0
  45.     end
  46.   end
  47.   object CancelButton: TButton
  48.     Left = 260
  49.     Top = 164
  50.     Width = 57
  51.     Height = 25
  52.     Hint = 'Cancel'
  53.     Cancel = True
  54.     Caption = '&Cancel'
  55.     ModalResult = 2
  56.     TabOrder = 1
  57.     OnClick = CancelButtonClick
  58.   end
  59.   object Crypto: TMPGCrypto
  60.     Left = 36
  61.     Top = 164
  62.   end
  63.   object NetClient: TMPGNetClient
  64.     Address = '1.1.1.12'
  65.     Port = '4444'
  66.     TimeOut = 20
  67.     OnInfo = NetClientInfo
  68.     OnConnect = NetClientConnect
  69.     OnTimeOut = NetClientTimeOut
  70.     OnDisconnect = NetClientDisconnect
  71.     OnRead = NetClientRead
  72.     OnWrite = NetClientWrite
  73.     Left = 8
  74.     Top = 164
  75.   end
  76.   object Timer: TTimer
  77.     Enabled = False
  78.     Interval = 2000
  79.     OnTimer = TimerTimer
  80.     Left = 64
  81.     Top = 164
  82.   end
  83.   object SaveDialog: TSaveDialog
  84.     DefaultExt = 'txt'
  85.     FileEditStyle = fsEdit
  86.     FileName = 'c:\receipt.txt'
  87.     Filter = 'Text Files (*.txt)|*.txt|All Files (*.*)|*.*'
  88.     InitialDir = 'c:\'
  89.     Options = [ofOverwritePrompt, ofHideReadOnly, ofNoChangeDir]
  90.     Title = 'Copy Receipt To Disk'
  91.     Left = 92
  92.     Top = 164
  93.   end
  94. end
  95.