是否可以在退出 Word 文档时运行拼写检查?虽然我知道拼写检查默认会突出显示拼写错误的单词/语法错误,但我的老板要求我让拼写检查在有人退出 Word 文档时运行。
答案1
将其作为模块插入 Visual Basic——如果您确实不需要运行拼写检查,它会询问您是否要运行拼写检查:
Sub AutoClose() Dim iAnswer As Integer iAnswer = MsgBox("运行拼写检查?", _ vbYesNo, "关闭时进行拼写检查")
If iAnswer <> 7 Then
If Options.CheckGrammarWithSpelling Then
ActiveDocument.CheckGrammar
Else
ActiveDocument.CheckSpelling
End If
End If
子目录结束