0

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
Nat Ritmeyer
  • 5,634
  • 8
  • 45
  • 58
anm
  • 1,865
  • 3
  • 19
  • 28
  • 2
    Textbox (at least, in Winforms) does not have such an in-built functionality. You woulde have to rely on an external library or on another class/control supporting it (e.g., MS Word via Office Interop). – varocarbas Mar 03 '14 at 18:14
  • I believe that one is specific to vs-2008 only @HansPassant – anm Mar 03 '14 at 18:24
  • It is not, still works fine in VS2013 with .NET 4.5.1 – Hans Passant Mar 03 '14 at 18:30

0 Answers0