Menu

#2 Some improvements

open
nobody
5
2004-04-17
2004-04-17
Rahul
No

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.

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.