Need option setting to open word document with full page width

  • Thread starter Thread starter n o s p a m p l e a s e
  • Start date Start date
N

n o s p a m p l e a s e

I want to set options so that when I open a word document, it opens
with full page width and not 100%. How can I do that?
 
Word should save the current setting with the document. For more, see
http://word.mvps.org/faqs/general/SaveViewAndZoom.htm. If this doesn't
do what you want, you could try the following automacros (put them in
a global template, such as normal.dot):

Sub AutoOpen()
ActiveWindow.View.Type = 3 'Print layout view
ActiveWindow.View.Zoom.PageFit = wdPageFitBestFit
End Sub
Sub AutoNew()
ActiveWindow.View.Type = 3 'Print Layout view
ActiveWindow.View.Zoom.PageFit = wdPageFitBestFit
End Sub

You can search the newsgroups at
http://groups.google.com/advanced_search?hl=en for more macros such as
those above.

If you need assistance on installing macros, see
http://gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


in message
news:[email protected]...
 
Back
Top