home *** CD-ROM | disk | FTP | other *** search
/ Techno Guide - Aspettando Windows 98 / TechnoGuide.iso / applicaz / snotetab / notetab.exe / 0 / RCDATA / TADDICTSPELLDIALOG / TADDICTSPELLDIALOG.txt < prev   
Text File  |  1998-01-25  |  5KB  |  231 lines

  1. object AddictSpellDialog: TAddictSpellDialog
  2.   Left = 344
  3.   Top = 113
  4.   Hint = '|Spell check...'
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Spell Check'
  8.   ClientHeight = 157
  9.   ClientWidth = 386
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   FormStyle = fsStayOnTop
  15.   Icon.Data = {<image000.ico>}
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object ErrorLabel: TLabel
  19.     Left = 8
  20.     Top = 8
  21.     Width = 53
  22.     Height = 13
  23.     Caption = 'Not Found:'
  24.     FocusControl = NotFound
  25.   end
  26.   object ActionLabel: TLabel
  27.     Left = 8
  28.     Top = 32
  29.     Width = 68
  30.     Height = 13
  31.     Caption = '&Replace With:'
  32.     FocusControl = WordEdit
  33.   end
  34.   object SuggestLabel: TLabel
  35.     Left = 8
  36.     Top = 57
  37.     Width = 61
  38.     Height = 13
  39.     Caption = '&Suggestions:'
  40.     FocusControl = SuggestBox
  41.   end
  42.   object NotFound: TEdit
  43.     Left = 96
  44.     Top = 8
  45.     Width = 281
  46.     Height = 21
  47.     Hint = '|Misspelled or unknown word found in document'
  48.     HelpContext = 912
  49.     ReadOnly = True
  50.     TabOrder = 6
  51.   end
  52.   object WordEdit: TEdit
  53.     Left = 96
  54.     Top = 32
  55.     Width = 121
  56.     Height = 21
  57.     Hint = '|Replace with word'
  58.     HelpContext = 913
  59.     TabOrder = 7
  60.   end
  61.   object SuggestBox: TListBox
  62.     Left = 96
  63.     Top = 56
  64.     Width = 121
  65.     Height = 97
  66.     Hint = '|Suggestion list'
  67.     HelpContext = 914
  68.     ItemHeight = 13
  69.     TabOrder = 8
  70.   end
  71.   object ChangeAll: TButton
  72.     Left = 224
  73.     Top = 32
  74.     Width = 75
  75.     Height = 22
  76.     Hint = 
  77.       '|Replace current and all successive instances of the misspelled ' +
  78.       'word'
  79.     HelpContext = 900
  80.     Caption = '&Change All'
  81.     Enabled = False
  82.     TabOrder = 0
  83.     OnClick = ChangeAllClick
  84.   end
  85.   object Change: TButton
  86.     Left = 304
  87.     Top = 32
  88.     Width = 75
  89.     Height = 22
  90.     Hint = '|Replace current instance of the misspelled word'
  91.     HelpContext = 901
  92.     Caption = 'C&hange'
  93.     Enabled = False
  94.     TabOrder = 1
  95.     OnClick = ChangeClick
  96.   end
  97.   object IgnoreAll: TButton
  98.     Left = 224
  99.     Top = 56
  100.     Width = 75
  101.     Height = 22
  102.     Hint = 
  103.       '|Ignore all instances of misspelled word in current spell check ' +
  104.       'session'
  105.     HelpContext = 902
  106.     Caption = '&Ignore All'
  107.     Enabled = False
  108.     TabOrder = 2
  109.     OnClick = IgnoreAllClick
  110.   end
  111.   object Ignore: TButton
  112.     Left = 304
  113.     Top = 56
  114.     Width = 75
  115.     Height = 22
  116.     Hint = '|Ignore this instance of the misspelled word'
  117.     HelpContext = 903
  118.     Caption = 'I&gnore'
  119.     Enabled = False
  120.     TabOrder = 3
  121.     OnClick = IgnoreClick
  122.   end
  123.   object Add: TButton
  124.     Left = 224
  125.     Top = 80
  126.     Width = 75
  127.     Height = 22
  128.     Hint = '|Adds unknown word to current user dictionary'
  129.     HelpContext = 904
  130.     Caption = '&Add'
  131.     Enabled = False
  132.     TabOrder = 4
  133.     OnClick = AddClick
  134.   end
  135.   object AutoCorrect: TButton
  136.     Left = 304
  137.     Top = 80
  138.     Width = 75
  139.     Height = 22
  140.     Hint = '|Adds auto-correction pair to current user dictionary'
  141.     HelpContext = 905
  142.     Caption = 'Au&to-Correct'
  143.     Enabled = False
  144.     TabOrder = 5
  145.     OnClick = AutoCorrectClick
  146.   end
  147.   object Help: TButton
  148.     Left = 224
  149.     Top = 131
  150.     Width = 75
  151.     Height = 22
  152.     Hint = '|Help information about this dialog box'
  153.     Caption = 'Hel&p'
  154.     TabOrder = 13
  155.     OnClick = HelpClick
  156.   end
  157.   object Options: TButton
  158.     Left = 8
  159.     Top = 131
  160.     Width = 75
  161.     Height = 22
  162.     Hint = 
  163.       '|Set main and user dictionaries as well as configuration setting' +
  164.       's'
  165.     HelpContext = 909
  166.     Caption = '&Options'
  167.     TabOrder = 12
  168.     OnClick = OptionsClick
  169.   end
  170.   object Start: TButton
  171.     Left = 8
  172.     Top = 83
  173.     Width = 75
  174.     Height = 22
  175.     Hint = '|Restart a spell check session from the caret position'
  176.     HelpContext = 907
  177.     Caption = 'Start'
  178.     Enabled = False
  179.     TabOrder = 10
  180.     OnClick = StartClick
  181.   end
  182.   object Cancel: TBitBtn
  183.     Left = 304
  184.     Top = 131
  185.     Width = 75
  186.     Height = 22
  187.     Hint = '|End the spell check session and close dialog box'
  188.     HelpContext = 911
  189.     Cancel = True
  190.     Caption = 'Close'
  191.     ModalResult = 2
  192.     TabOrder = 14
  193.     OnClick = CancelClick
  194.     NumGlyphs = 2
  195.   end
  196.   object UndoLast: TButton
  197.     Left = 8
  198.     Top = 107
  199.     Width = 75
  200.     Height = 22
  201.     Hint = '|Undo last correction'
  202.     HelpContext = 908
  203.     Caption = 'Undo &Last'
  204.     Enabled = False
  205.     TabOrder = 11
  206.     OnClick = UndoLastClick
  207.   end
  208.   object Suggest: TButton
  209.     Left = 8
  210.     Top = 59
  211.     Width = 75
  212.     Height = 22
  213.     Hint = '|Add suggestions for the misspelled word in the suggestion list'
  214.     HelpContext = 906
  215.     Caption = 'S&uggest'
  216.     Enabled = False
  217.     TabOrder = 9
  218.     OnClick = SuggestClick
  219.   end
  220.   object DC: TDialogControl
  221.     WordEdit = WordEdit
  222.     Suggestions = SuggestBox
  223.     OnChangeEnabled = DC1ChangeEnabled
  224.     OnChangeVisible = DC1ChangeVisible
  225.     OnGetCaption = DC1GetCaption
  226.     OnSetCaption = DC1SetCaption
  227.     OnResize = DCResize
  228.     Left = 352
  229.   end
  230. end
  231.