hi i already have a working code to spell check through word checkspelling. also i need to handle the check spelling windo CANCEL BUTTON. basically im going to ignore spell check window sentence/paragraph/word suggestion.
vb Code:
wordApp = New Word.Application wordApp.Visible = False wordApp.Documents.Add() wordApp.Selection.Text = textContentRichTextBox.Text wordApp.ActiveDocument.CheckSpelling() textContentRichTextBox.Text = wordApp.Selection.Text wordApp.ActiveDocument.Close(SaveChanges:=Word.WdSaveOptions.wdDoNotSaveChanges) wordApp.Quit() wordApp = Nothing


Reply With Quote

