Viewing documents

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I ensure a document opens in the same desired view each time? eg Print
layout
 
Generally, documents open in the view they were saved. In Word 2007, though,
you have to check the "Allow opening a document in Draft view" option in
Office button | Word Options, Advanced category (under "General"). See also
http://word.mvps.org/faqs/general/SaveViewAndZoom.htm.

Alternatively, to force specific settings, you can use an auto macro.

--
Stefan Blom
Microsoft Word MVP


in message
news:[email protected]...
 
The document should open in the view in which it was saved. Where you have
no control over this you can force the issue with an autoopen macro
containing the lines

With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 500
.Zoom.Percentage = 100
End With

The extra Zoom line corrects the tendency for the cursor to 'disappear' in
Word 2003 particularly.
See http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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

Back
Top