Imports Infragistics.Win.UltraWinSpellChecker
PrivateSub btSpellCheckModally_Click(ByVal sender AsObject, ByVal e As EventArgs) Handles btSpellCheckModally.Click
'Show the spell check dialog for the rich text box modally
Me.ultraSpellChecker1.ShowSpellCheckDialog(Me.richTextBox1)
End Sub
using System.Windows.Forms;
using Infragistics.Win.UltraWinSpellChecker;
privatevoid btSpellCheckModally_Click(object sender, EventArgs e)
{
//Show the spell check dialog for the rich text box modally
this.ultraSpellChecker1.ShowSpellCheckDialog( this.richTextBox1 );
}