S
Sheri
I have created a macro for spelling and grammar, and replaced the button on
the toolbar and the tools menu with my macro for the users in my office.
Basically, the macro performs the Recheck Document command (in Tools,
Options, Spelling and Grammar), then displays the Spelling and Grammar dialog
box. Here is the problem, now the user's cannot click back into the document
while spellcheck is running, but before, using spelling and grammar
(natively), you can. Is there a command that I can put in my macro that will
allow user's to do this? I think that it has something to do with SetFocus,
but I can't find anything in Help. See below for a copy of the code.
Application.ResetIgnoreAll
ActiveDocument.SpellingChecked = False
ActiveDocument.GrammarChecked = False
With Dialogs(wdDialogToolsSpellingAndGrammar)
.Show
End With
MsgBox "Spellcheck Complete"
ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
Thank you!
the toolbar and the tools menu with my macro for the users in my office.
Basically, the macro performs the Recheck Document command (in Tools,
Options, Spelling and Grammar), then displays the Spelling and Grammar dialog
box. Here is the problem, now the user's cannot click back into the document
while spellcheck is running, but before, using spelling and grammar
(natively), you can. Is there a command that I can put in my macro that will
allow user's to do this? I think that it has something to do with SetFocus,
but I can't find anything in Help. See below for a copy of the code.
Application.ResetIgnoreAll
ActiveDocument.SpellingChecked = False
ActiveDocument.GrammarChecked = False
With Dialogs(wdDialogToolsSpellingAndGrammar)
.Show
End With
MsgBox "Spellcheck Complete"
ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
Thank you!