Private Sub Workbook_Activate()
If Application.Version = "14.0" Then ' 2010
On Error Resume Next
With Application
.DisplayFullScreen = True
.CommandBars("Worksheet Menu Bar").Enabled = False
End With
ElseIf Application.Version = "12.0" Then ' 2007
On Error Resume Next
With Application
.DisplayFullScreen = True
.CommandBars("Worksheet Menu Bar").Enabled = False
End With
ElseIf Application.Version = "11.0" Then '2003
'This will disable all BuiltIn Command bars in 2003 version
Dim Cbar As CommandBar
For Each Cbar In Application.CommandBars
If Cbar.BuiltIn = True Then
Cbar.Enabled = False
End If
Application.DisplayFormulaBar = False
Application.DisplayStatusBar = False
Next
End If
End Sub
Private Sub Workbook_Open()
If Not (ThisWorkbook Is ActiveWorkbook) Then Exit Sub
ActiveWindow.WindowState = xlMaximized
Application.WindowState = xlMaximized
Application.DisplayFullScreen = True
Application.CommandBars("Full Screen").Enabled = True
End Sub