View Single Post
 
Old 07-08-2015, 03:54 PM
mrlemmer11 mrlemmer11 is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: Jun 2015
Posts: 13
mrlemmer11 is on a distinguished road
Default

Code:
Sub setFullScreen()
If Application.Height > Application.Width Then
With ActiveDocument.ActiveWindow.View
    .Type = wdPrintView
    .Zoom.Percentage = 104
    .FullScreen = True
End With
Else
With ActiveDocument.ActiveWindow.View
    .Type = wdPrintView
    .Zoom.Percentage = 120
    .FullScreen = True
End With
End If
End Sub
HAHA look at that! I figured out my own problem for once! well this is a reference for anyone else who may have the same question.
Reply With Quote