How to Open All Documents in "ONE PAGE" View?

  • Thread starter Jim In Minneapolis
  • Start date
J

Jim In Minneapolis

How can I change the following code in my normal.dotm, to make each new
document open in "ONE PAGE" view . . instead of the present 100% view?

Sub AutoNew()
ActiveWindow.View.Type = 3
ActiveWindow.View.Zoom.Percentage = 100
End Sub


Thanks!
 
S

StevenM

How about:

Sub AutoNew()
ActiveWindow.View.Type = wdPrintView
ActiveWindow.View.Zoom.PageFit = wdPageFitFullPage
End Sub
 
J

Jim In Minneapolis

Great, Steve.

Right on the money.

I appreciate your help.

Thanks

Jim
 

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