View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Jezebel
 
Posts: n/a
Default Stop viewing Final Showing Markup by default upon opening MS Word documents

Final Showing Markup isn't the default anyway.







"Jason Yee" wrote in message
oups.com...
Hooray! I figured it out: just dump these seven lines into a module in
your Normal template. Since the name of this sub is "AutoOpen," it
will execute whenever you open a document. See more at
http://jyeee.blogspot.com/2006/04/fr...e-reading.html

Sub AutoOpen()
With ActiveWindow.View
.ShowRevisionsAndComments = False
.RevisionsView = wdRevisionsViewFinal
End With
CommandBars("Reviewing").Visible = False '''OPTIONAL: turns off
Reviewing toolbar
End Sub