J
john9210
I would like Word to always open with zoom set to 90%. I’ve created an
AutoExec macro and AutoOpen macro to do this.
However, when I double-click an existing document (with Word closed), Word
also creates a blank document1. Apparently because double clicking a document
also starts Word. Is there a way I can stop AutoExec from running when I
double-click an existing document?
The two macros that I use are:
Sub AutoExec()
' AutoExec Macro
' opens a new document and sets view to 90 percent
Documents.Add Template:="Normal", NewTemplate:=False, DocumentType:=0
ActiveWindow.ActivePane.View.Zoom.Percentage = 90
End Sub
Sub AutoOpen()
' AutoOpen Macro
ActiveWindow.ActivePane.View.Zoom.Percentage = 90
End Sub
AutoExec macro and AutoOpen macro to do this.
However, when I double-click an existing document (with Word closed), Word
also creates a blank document1. Apparently because double clicking a document
also starts Word. Is there a way I can stop AutoExec from running when I
double-click an existing document?
The two macros that I use are:
Sub AutoExec()
' AutoExec Macro
' opens a new document and sets view to 90 percent
Documents.Add Template:="Normal", NewTemplate:=False, DocumentType:=0
ActiveWindow.ActivePane.View.Zoom.Percentage = 90
End Sub
Sub AutoOpen()
' AutoOpen Macro
ActiveWindow.ActivePane.View.Zoom.Percentage = 90
End Sub