I have built a simple windows form in which a user can edit some text that saves and is portrayed on another form. Now I want to add spell check to the original form where the user edits the text. Any idea how to approach this?
Here's the windwos form code:
Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click
If txtEdit.Text = String.Empty Then
MsgBox("Please complete the notes textbox!", MsgBoxStyle.Exclamation)
Else
value = txtEdit.Text
Close()
End If
End Sub