This question is locked. New answers and comments are not allowed.
I've implemented the ability for the user to switch dictionaries on the fly. This works fine except it doesn't re-check the existing text, it only works for new text. How can I force the Spellchecker to run again for the existing text?
This is how I am setting it:
This is how I am setting it:
//bind dictionary
switch
(id)
{
case
1:
richBox.SpellChecker = myDictionaries.SpellcheckerAux;
break
;
case
2:
richBox.SpellChecker = myDictionaries.SpellcheckerAux2;
break
;
default
:
richBox.SpellChecker = myDictionaries.Spellchecker;
break
;
}