» Give a non-Excel look by Hiding the Active Menu And Using Full Screen using VBA in Microsoft Excel
To hide the active menu:
Application.CommandBars.ActiveMenuBar.Enabled = False
This command, coupled with setting the screen to full screen and hiding
the full screen toolbar will give you
a non-Excel look:
Application.DisplayFullScreen = True
Application.CommandBars("Full Screen").Enabled = False

