Hide/Unhide Access Ribbons, VBA

This article will explain how to hide and unhide the ribbon in Access using VBA.


Hide:

The following code will hide the ribbon:

Call DoCmd.ShowToolbar("Ribbon", acToolbarNo)

Before:
Before
After:
After


Unhide:

The following code will unhide the ribbon:

DoCmd.ShowToolbar("Ribbon", acToolbarYes)

See also:

If you need assistance with your code, or you are looking for a VBA programmer to hire feel free to contact me. Also please visit my website  www.software-solutions-online.com

Leave a Reply

Your email address will not be published. Required fields are marked *