hello, I am using ultraspellchecker in that i have to visible false the heading in spellcheckdialog ("Spelling error found")
and also need to add some button in spellcheckdialog window how can i do
Hello,
When errors are found you can override the text displayed via the CheckText method.
eg.
if (this.ultraSpellChecker1.CheckText(this.richTextBox1.Text).Count == 0) { MessageBox.Show("No Spelling Errors"); } else if (this.ultraSpellChecker1.CheckText(this.richTextBox1.Text).Count > 0) { MessageBox.Show( this.ultraSpellChecker1.CheckText( this.richTextBox1.Text).Count + " Spelling Errors Found!"); }
Hi Michael,
thanks for your reply but below one is my problem.
i don't want to display "spelling errors found" heading in Modal spell Check Dailog window