Intercept the Save event (see "Intercepting events like Save and Print" at http://word.mvps.org/FAQs/General/index.htm)
In your event(s) you could include something like the following:
With Selection
.HomeKey Unit:=wdStory
With .Find
.ClearFormatting
.Text = ""
.Highlight = True
If .Execute Then
MsgBox "This document has highlighting."
Exit Sub
End If
End With
End With
Intercept the Save event (see "Intercepting events like Save and Print" at http://word.mvps.org/FAQs/General/index.htm)
In your event(s) you could include something like the following:
With Selection
.HomeKey Unit:=wdStory
With .Find
.ClearFormatting
.Text = ""
.Highlight = True
If .Execute Then
MsgBox "This document has highlighting."
Exit Sub
End If
End With
End With