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 » Page Layout
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

print layout default



 
 
Thread Tools Display Modes
  #1  
Old December 15th, 2004, 08:15 PM
theatrefan
external usenet poster
 
Posts: n/a
Default print layout default

when I open many of my word files, they have to be clicked to "print layout"
in order to read them properly, so is there a way to default all my word
files to "print layout" in the view tab? Thanks.
  #2  
Old December 16th, 2004, 10:38 AM
Stefan Blom
external usenet poster
 
Posts: n/a
Default

Make sure that your document has the desired view and zoom when you
save and close it; this should still be in effect the next time you
open the document. Otherwise, you can use AutoOpen and AutoNew macros
to force the desired settings:

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

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

In the above code, you can choose another percentage than 100. In
addition, you can use a different type than 3, which means Print
Layout View. For example, you can use 1 for Normal View.

If you need help installing the macros, please see:
http://www.gmayor.com/installing_macro.htm


--
Stefan Blom


"theatrefan" wrote in message
...
when I open many of my word files, they have to be clicked to "print

layout"
in order to read them properly, so is there a way to default all my

word
files to "print layout" in the view tab? Thanks.







 




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

Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I get rid of horizontal lines in Print Layout view? rose Page Layout 2 November 29th, 2004 10:13 AM
Font changes between Normal View and Print Layout. Portrait in Flesh General Discussion 2 September 8th, 2004 11:31 PM
Print layout inaccuracy Rita Page Layout 1 August 10th, 2004 03:16 PM
Print preview vs print layout view dwolfe Page Layout 1 June 22nd, 2004 05:12 AM


All times are GMT +1. The time now is 07:17 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.