trichview.support
Re: RichView addict spell check demo problem |
Author |
Message |
Sergey Tkachenko |
Posted: 03/20/2005 15:59:36 When you add a word to the dictionary, OnParserIgnoreWord event should occur. In this event, you should call RichViewEdit1.LiveSpellingValidateWord. Make sure that this code is executed: procedure TForm1.RVAddictSpell31ParserIgnoreWord(Sender: TObject; Before: Boolean; State: Integer); begin if not Before and (State in [IgnoreState_IgnoreAll, IgnoreState_Add]) then RichViewEdit1.LiveSpellingValidateWord(RVAddictSpell31.CurrentWord); end; > > When added a new word to the dictionary, I have to close the application and > restart again the word added will only be recognize as a correct word. Why? > > |
Powered by ABC Amber Outlook Express Converter