Hi, I would like to change the default track changes view style. When I open
or create a new document, the track changes default view is "Final Showing
Markup." I would like to change that to "Final" so that I don't see the
track changes made.
I tried this code, but it didn't work when I went to open word for the first
time:
Public Sub AutoExec()
ActiveDocument.ShowRevisions = False
With ActiveWindow.View
RevisionsView = wdRevisionsViewFinal
End With
End Sub
thanks.
Word Heretic - 10 Dec 2004 10:47 GMT
G'day Clarke <Clarke@discussions.microsoft.com>,
The ActiveDocument doesn't exist properly at the time the AutoExec
runs. If you use an Application.Ontime command to delay the code it
will work better.
Steve Hudson - Word Heretic
steve from wordheretic.com (Email replies require payment)
Without prejudice
Clarke reckoned:
>Hi, I would like to change the default track changes view style. When I open
>or create a new document, the track changes default view is "Final Showing
[quoted text clipped - 12 lines]
>
>thanks.