home *** CD-ROM | disk | FTP | other *** search
/ Freelog 7 / Freelog007.iso / BAS / Fichiers / Renovator / ReNovator.exe / 0 / RCDATA / TERRFORM / TERRFORM.txt
Text File  |  1998-01-26  |  1KB  |  78 lines

  1. object ErrForm: TErrForm
  2.   Left = 200
  3.   Top = 110
  4.   Width = 280
  5.   Height = 282
  6.   Caption = 'Errors'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   OnHide = FormHide
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Panel1: TPanel
  18.     Left = 0
  19.     Top = 0
  20.     Width = 272
  21.     Height = 25
  22.     Align = alTop
  23.     Alignment = taLeftJustify
  24.     BevelOuter = bvNone
  25.     Caption = ' The following errors occured:'
  26.     TabOrder = 0
  27.   end
  28.   object MemoError: TMemo
  29.     Left = 0
  30.     Top = 25
  31.     Width = 272
  32.     Height = 196
  33.     Align = alClient
  34.     Lines.Strings = (
  35.       'MemoError')
  36.     ReadOnly = True
  37.     ScrollBars = ssVertical
  38.     TabOrder = 1
  39.   end
  40.   object Panel2: TPanel
  41.     Left = 0
  42.     Top = 221
  43.     Width = 272
  44.     Height = 34
  45.     Align = alBottom
  46.     BevelOuter = bvNone
  47.     TabOrder = 2
  48.     object Panel3: TPanel
  49.       Left = 136
  50.       Top = 0
  51.       Width = 136
  52.       Height = 34
  53.       Align = alRight
  54.       BevelOuter = bvNone
  55.       TabOrder = 0
  56.       object BClose: TButton
  57.         Left = 8
  58.         Top = 6
  59.         Width = 65
  60.         Height = 25
  61.         Caption = 'Close'
  62.         Default = True
  63.         ModalResult = 1
  64.         TabOrder = 0
  65.       end
  66.       object BHelp: TButton
  67.         Left = 80
  68.         Top = 6
  69.         Width = 49
  70.         Height = 25
  71.         Caption = 'Help'
  72.         TabOrder = 1
  73.         OnClick = BHelpClick
  74.       end
  75.     end
  76.   end
  77. end
  78.