home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / tema / thebat / download / update / thebat.exe / 0 / RCDATA / TDICTIONARYEDITOR / TDICTIONARYEDITOR.txt
Text File  |  2001-09-09  |  4KB  |  197 lines

  1. object DictionaryEditor: TDictionaryEditor
  2.   Left = 200
  3.   Top = 113
  4.   HelpContext = 14022
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Edit Dictionaries'
  8.   ClientHeight = 278
  9.   ClientWidth = 432
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnClose = FormClose
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Label1: TLabel
  21.     Left = 8
  22.     Top = 8
  23.     Width = 34
  24.     Height = 13
  25.     Caption = '&Words:'
  26.     FocusControl = eWord
  27.   end
  28.   object lAction: TLabel
  29.     Left = 200
  30.     Top = 8
  31.     Width = 33
  32.     Height = 13
  33.     Caption = 'A&ction:'
  34.     FocusControl = cbAction
  35.   end
  36.   object lOther: TLabel
  37.     Left = 200
  38.     Top = 48
  39.     Width = 55
  40.     Height = 13
  41.     Caption = 'Ot&her word:'
  42.     FocusControl = eOther
  43.   end
  44.   object eWord: TEdit
  45.     Left = 8
  46.     Top = 24
  47.     Width = 179
  48.     Height = 21
  49.     TabOrder = 0
  50.   end
  51.   object lWords: TListBox
  52.     Left = 8
  53.     Top = 48
  54.     Width = 179
  55.     Height = 73
  56.     ItemHeight = 13
  57.     TabOrder = 1
  58.     OnClick = lWordsClick
  59.   end
  60.   object cbAction: TComboBox
  61.     Left = 200
  62.     Top = 24
  63.     Width = 225
  64.     Height = 21
  65.     ItemHeight = 13
  66.     Items.Strings = (
  67.       'Ignore (treat as correctly spelled)'
  68.       'Change automatically'
  69.       'Auto change with preserved case'
  70.       'Conditional change'
  71.       'Conditional change (case preserved)'
  72.       'Exclude')
  73.     TabOrder = 2
  74.   end
  75.   object eOther: TEdit
  76.     Left = 200
  77.     Top = 64
  78.     Width = 225
  79.     Height = 21
  80.     TabOrder = 3
  81.   end
  82.   object bAddWord: TButton
  83.     Left = 200
  84.     Top = 96
  85.     Width = 105
  86.     Height = 25
  87.     Caption = '&Add word'
  88.     TabOrder = 4
  89.     OnClick = bAddWordClick
  90.   end
  91.   object bDelWord: TButton
  92.     Left = 320
  93.     Top = 96
  94.     Width = 105
  95.     Height = 25
  96.     Caption = '&Delete Word'
  97.     TabOrder = 5
  98.     OnClick = bDelWordClick
  99.   end
  100.   object gbDic: TGroupBox
  101.     Left = 8
  102.     Top = 136
  103.     Width = 417
  104.     Height = 105
  105.     Caption = 'Dictionary'
  106.     TabOrder = 6
  107.     object Label3: TLabel
  108.       Left = 8
  109.       Top = 16
  110.       Width = 19
  111.       Height = 13
  112.       Caption = '&File:'
  113.       FocusControl = cbLex
  114.     end
  115.     object Label4: TLabel
  116.       Left = 192
  117.       Top = 16
  118.       Width = 51
  119.       Height = 13
  120.       Caption = 'Language:'
  121.     end
  122.     object lLang: TLabel
  123.       Left = 192
  124.       Top = 36
  125.       Width = 81
  126.       Height = 13
  127.       Caption = 'American English'
  128.     end
  129.     object cbLex: TComboBox
  130.       Left = 8
  131.       Top = 32
  132.       Width = 171
  133.       Height = 21
  134.       Style = csDropDownList
  135.       ItemHeight = 13
  136.       TabOrder = 0
  137.       OnChange = cbLexChange
  138.     end
  139.     object bNewDic: TButton
  140.       Left = 312
  141.       Top = 16
  142.       Width = 97
  143.       Height = 25
  144.       Caption = '&New File...'
  145.       TabOrder = 1
  146.       OnClick = bNewDicClick
  147.     end
  148.     object bAddDic: TButton
  149.       Left = 312
  150.       Top = 44
  151.       Width = 97
  152.       Height = 25
  153.       Caption = 'Add &File'
  154.       TabOrder = 2
  155.       OnClick = bAddDicClick
  156.     end
  157.     object bDelDic: TButton
  158.       Left = 312
  159.       Top = 72
  160.       Width = 97
  161.       Height = 25
  162.       Caption = '&Remove'
  163.       TabOrder = 3
  164.       OnClick = bDelDicClick
  165.     end
  166.     object bImport: TButton
  167.       Left = 8
  168.       Top = 64
  169.       Width = 81
  170.       Height = 25
  171.       Caption = 'I&mport...'
  172.       TabOrder = 4
  173.       OnClick = bImportClick
  174.     end
  175.     object bExport: TButton
  176.       Left = 96
  177.       Top = 64
  178.       Width = 83
  179.       Height = 25
  180.       Caption = '&Export...'
  181.       TabOrder = 5
  182.       OnClick = bExportClick
  183.     end
  184.   end
  185.   object bClose: TButton
  186.     Left = 176
  187.     Top = 248
  188.     Width = 75
  189.     Height = 25
  190.     Cancel = True
  191.     Caption = 'Close'
  192.     Default = True
  193.     ModalResult = 1
  194.     TabOrder = 7
  195.   end
  196. end
  197.