Dear Sir,
Its a great program! I have some recomendations for the
program. Please look to them if you find them useful.
1. You must select the first word in the suggestion list:
this can be done as below.
private void SpellChecker_MisspelledWord(object sender,
NetSpell.SpellChecker.SpellingEventArgs e)
{
this.UpdateDisplay(this.SpellChecker.Text,
e.Word, e.WordIndex, e.TextIndex);
//turn on ignore all option
this.IgnoreAllButton.Enabled = true;
this.ReplaceAllButton.Enabled = true;
//generate suggestions
SpellChecker.Suggest();
//display suggestions
this.SuggestionList.Items.AddRange((string[])
SpellChecker.Suggestions.ToArray(typeof(string)));
if (SuggestionList.Items.count>0)
SuggestionList.selectedindex=0;
}
2. Please make the flatstyle of the every button
as "System"
Thanks for the great program.
Rahul.