» 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
Book Store:
Recommended Books:
- Microsoft Excel 2002 Visual Basic for Applications Step by Step
- Your First Business Plan: A Simple Question and Answer Format Designed to Help You Write Your Own Plan (3rd Ed)
- Business Analysis and Valuation: Using Financial Statements, Text and Cases
- Special Edition Using Microsoft Outlook 2002
- Marketing Plans
- Excel Charts

