How to set view standard to 150%

J

Jannes

Hello,

I want to set my view standard on 150% to all Word
documents. Also in Excel I want this.
I tried with Zoom but when I receive another document rom
someone the view is different. (version Word 2000)

Thanks in advanced.

Jannes
 
J

Jannes

Thanks but when I open another document from an extern
person it's back to 100%...
Anyone another suggestion?
 
S

Suzanne S. Barnhill

All documents will open in the view and at the zoom in/at which they are
saved. You can't control other people's actions, and you can force their
documents to open at a prescribed zoom only with a macro, which I am unable
to provide, but I suspect someone else will be along soon to do so.
 
G

garfield-n-odie

Creating the following AutoOpen macro, or adding the middle line to your
AutoOpen macro:

Sub AutoOpen()
ActiveWindow.ActivePane.View.Zoom.Percentage = 150
End Sub

will override the zoom percent that the document was saved in.
 
G

Guest

Thanks again, but now when I open other documents I
receive the following error: object variable or white
block variable is not set.
 
Top