How to set activewindow view to final (no markup)

A

Al

I have a template that continually opens documents in "final - show markup"
layout.

How can I force it to open in "final" layout?
 
D

Doug Robbins

With ActiveWindow.View
.ShowRevisionsAndComments = False
.RevisionsView = wdRevisionsViewFinal
End With


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 
A

Al

Thanks Doug. This worked. I had to qualify it and not use the with, end
with, but it does work.
 
Top