H
hans.list
I want to exclude all comments from being spell-checked. This is what I came up with:
Sub ExcludeCommentsFromSpellChecking()
Dim commentaar As Comment
For Each commentaar In ActiveDocument.Comments
commentaar.Range.Select
Selection.LanguageID = wdNoProofing
Next commentaar
End Sub
I'd be grateful for better solutions than this one ...
Hans
Sub ExcludeCommentsFromSpellChecking()
Dim commentaar As Comment
For Each commentaar In ActiveDocument.Comments
commentaar.Range.Select
Selection.LanguageID = wdNoProofing
Next commentaar
End Sub
I'd be grateful for better solutions than this one ...
Hans