November 2008 Entries

Using Words Spellcheck and grammer check with your windows Forms application
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...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Wednesday, November 05, 2008 3:42 PM | Feedback (350)

Using Words Spellcheck and grammer check with your windows Forms application
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...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Posted On Wednesday, November 05, 2008 3:42 PM | Feedback (48)