Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
90
Need to visible false that heading (Spelling error found) in spellcheckdailog in ultraspellchecker
posted

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

Parents
  • 29085
    Offline posted

    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!");
    }

Reply Children