A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Change view mode



 
 
Thread Tools Display Modes
  #1  
Old March 24th, 2010, 12:54 AM posted to microsoft.public.word.newusers
SF[_5_]
external usenet poster
 
Posts: 27
Default Change view mode

Hi,

My word 2007 open in Print Layout mode, how to I tell Word 2007 to open in
draft mode for every document.

SF


  #2  
Old March 24th, 2010, 07:08 PM posted to microsoft.public.word.newusers
Stefan Blom[_3_]
external usenet poster
 
Posts: 4,556
Default Change view mode

To force all documents into Draft view, add the following auto macros to
your normal.dotm (if you are already using auto macros, just add the lines
of code to those macros):

Sub AutoOpen()
Options.AllowOpenInDraftView = True
ActiveWindow.View.Type = wdNormalView
ActiveWindow.View.Zoom.Percentage = 100
End Sub

Sub AutoNew()
Options.AllowOpenInDraftView = True
ActiveWindow.View.Type = wdNormalView
ActiveWindow.View.Zoom.Percentage = 100
End Sub

If you need assistance, see http://www.gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP



"SF" wrote in message
...
Hi,

My word 2007 open in Print Layout mode, how to I tell Word 2007 to open in
draft mode for every document.

SF



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 06:52 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.