Hi,
I have an module in my app that is similar to outlook. When a user replies to a message, the body of the
I'm using NetAdvantage 10.2 build 2151
thanks
Mario
Hello Mario,
Maybe one possibel approach could be if you handle ultraSpellChecker1_SpellChecking() event and cancle checking if your initial Text. For example:
private void ultraSpellChecker1_SpellChecking(object sender, Infragistics.Win.UltraWinSpellChecker.SpellCheckingEventArgs e)
{
if (e.Text.Length < TextLength + 1) e.Cancel = true;
}
Please take a look at the attached sample and video file for more details and let me know if you have any questions
Regards
Here is the sample