Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Menus and Toolbars / March 2008

Tip: Looking for answers? Try searching our database.

customizing zoom percentages

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
mededitor - 05 Mar 2008 13:39 GMT
For certain projects, I prefer to work at 85%, and always have to enter "85%"
manually in the Zoom menu box every time I open certain documents. Is there a
way to ADD a percentage to the dropdown Zoom menu in MS Office, Word 2003? I
don't want to change the DEFAULT, because I work at different percentages
depending on the project. But can one add customized choices to the menus?
Graham Mayor - 05 Mar 2008 14:34 GMT
No - but it is a simple matter to add a toolbar button to give you that:
amount of zoom

Sub Zoom85()
ActiveWindow.View.Zoom.Percentage = 85
End Sub

or the following will toggle between 85% and 100%

Sub Toggle85()
If ActiveWindow.View.Zoom.Percentage = 100 Then
   ActiveWindow.View.Zoom.Percentage = 85
Else
   ActiveWindow.View.Zoom.Percentage = 100
End If
End Sub

http://www.gmayor.com/installing_macro.htm

Signature

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor -  Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

> For certain projects, I prefer to work at 85%, and always have to
> enter "85%" manually in the Zoom menu box every time I open certain
> documents. Is there a way to ADD a percentage to the dropdown Zoom
> menu in MS Office, Word 2003? I don't want to change the DEFAULT,
> because I work at different percentages depending on the project. But
> can one add customized choices to the menus?
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.