One of my customers wanted to add spell check functionality to their windows Form application. knowing that everyone in their organization has Microsoft Office installed, I did not want to include word interop with the application. so I found a neat way of using words spellcheck. for more information you might want to check this article that was very helpful . Private Sub SpellAndGrammarCheck(ByVal YourTextbox As TextBox) Try Dim oWord As Object = Nothing Dim oDoc As Object = Nothing Dim oData As ......
One of my customers wanted to add spell check functionality to their windows Form application. knowing that everyone in their organization has Microsoft Office installed, I did not want to include word interop with the application. so I found a neat way of using words spellcheck. for more information you might want to check this article that was very helpful . Private Sub SpellAndGrammarCheck(ByVal YourTextbox As TextBox) Try Dim oWord As Object = Nothing Dim oDoc As Object = Nothing Dim oData As ......