How do I define default view with document map in Word 2007?

S

Stefan Blom

In general, a document will open in the view in which it was saved. And if
you have chosen to display the document map in that view, it will continue
to display.

However, if you want to force a certain view as well as force the display of
the document map, whenever you create a new document or open an existing
one, you can use the following pair of macros:

Sub AutoOpen()
ActiveWindow.View.Type = 3 'Print Layout view
ActiveWindow.View.Zoom = 100
ActiveWindow.DocumentMap = True
End Sub

Sub AutoNew()
ActiveWindow.View.Type = 3 'Print Layout view
ActiveWindow.View.Zoom = 100
ActiveWindow.DocumentMap = True
End Sub

Install the macros in your Normal template (see
http://www.gmayor.com/installing_macro.htm if you need assistance).
 

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