How can I get real time spell checking (no dialog checking) in a DataGridView cell using the C1SpellChecker?
Found out what the issue was...wouldn't you know it, just when I finished entering this question. I'm including the code snippet in case anyone has the same problem I did:
Private Sub _flex_EditingControlShowing(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewEditingControlShowingEventArgs) Handles _flex.EditingControlShowing
Dim tb As TextBoxBase = TryCast(e.Control, TextBoxBase)
If tb IsNot Nothing Then
_spell.SetSpellChecking(tb, True)
End If
End Sub
Thanks for sharing the solution!