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
Hi Michael,
its working thanks a lot.
Yeah sorry, I thought that would work. The right way is to simply change the Resource strings as if you were localizing it. You can remove the text "Spell Error Found" by replacing it's resource with an empty string.
I tested this using the SpellCheckDialogOpening event. private void UltraSpellChecker1_SpellCheckDialogOpening(object sender, Infragistics.Win.UltraWinSpellChecker.SpellCheckDialogOpeningEventArgs e) { Infragistics.Shared.ResourceCustomizer rc; rc = Infragistics.Win.UltraWinSpellChecker.Resources.Customizer; rc.SetCustomizedString("LS_SpellCheckForm_lbErrorsFound", String.Empty); }
You can always set this back by resetting the customized string.
rrc.ResetCustomizedString("LS_SpellCheckForm_lbErrorsFound");
its not working. Could you please provide the sample method code for Override method of checktext and it will be helpful
Thanks in advance.
With the approach I gave above you should be able to supply an empty string. Let me know if this works for you.
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