Default open Final, NOT Final Showing Markup

J

jyeee

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/freaking-awesome-if-you-like-reading.html

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

This is the only thing that worked for me, clicking on Tools | Options
| Security |
and unchecking the "Make hidden markup visible when opening or saving"
box did NOT work.
 
J

jyeee

This should be on ONE line: "CommandBars("Reviewing").Visible = False
'''OPTIONAL: turns off Reviewing toolbar"; "Reviewing toolbar" should
not be on its own line.
 

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.

Ask a Question

Top