S Squirrel*Salad Jun 24, 2008 #1 Hiya, How do i get excel to automatically start in full screen mode? thx
G Gary''s Student Jun 24, 2008 #2 Include the following workbook event macro: Private Sub Workbook_Open() Application.DisplayFullScreen = True End Sub
Include the following workbook event macro: Private Sub Workbook_Open() Application.DisplayFullScreen = True End Sub
S Shasur Jun 24, 2008 #3 Hi Can you try this Sub FullScreen() Dim oXL As Excel.Application Set oXL = New Excel.Application oXL.DisplayFullScreen = True If Not oXL Is Nothing Then Set oXL = Nothing End Sub
Hi Can you try this Sub FullScreen() Dim oXL As Excel.Application Set oXL = New Excel.Application oXL.DisplayFullScreen = True If Not oXL Is Nothing Then Set oXL = Nothing End Sub