Menu

#8 Netspell service without UI

open
nobody
None
5
2005-06-22
2005-06-22
Anonymous
No

Is it possible to run netspell as a service without a GUI?

For example I would like to take some word(s) or phrase
and spell check it and replace it with the corrected
words.

NetSpell.SpellChecker.Spelling spelling;
spelling = new
NetSpell.SpellChecker.Spelling();

spelling.Dictionary.DictionaryFolder =
@"..\..\..\..\dic";
spelling.Text = "philps";
spelling.SpellCheck();
for (int i= 0; i < spelling.Suggestions.Count;
i++)
{

Console.WriteLine(spelling.Suggestions
[i].ToString());
}

without further user interaction.

Thank you,
Ged

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.