|
Hello!
I'm using the pinEdit 5.2 evaluation product for ASP.NET. I'm trying to upgrade from an older version so that I can take advantage of the new spell checking add-on.
I gather from reading your documentation that the eval should support using one generic spell checker file for common words with an additional "user" file for user defined words. Is this correct?
I am trying to use the default dictionary that shipped with the evaluation as a primary spell checker. However, I would like to use a second, custom dictionary to check some industry specific jargon. I created a simple Microsoft Word custom dictionary file using Word 2003 to simulate the industry specific words.
My code looks like:
SpellDictionaryPath = "C:/MyApplication/editor/add-on/spell/default.dict"; SpellUserDictionaryPath = "C:/MyApplication/myCustom.dict.dic";
It appears that only one of these settings is used while the other is ignored. For example, if I comment out the first line, the spell checker only knows the correct spelling for my specific words. If both lines are included, my specific words are not known to the spell checker.
|