Not sure, but here is a simple macro we use (and assign to a toolbar button)
to toggle highlighting on and off to allow people to print without it being
there:
Sub ToggleHL()
With ActiveWindow.View
If .ShowHighlight = False Then
.ShowHighlight = True
Else
.ShowHighlight = False
End If
End With
End Sub
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.