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: After: – Unhide: The following code will unhide the ribbon: DoCmd.ShowToolbar(“Ribbon”, acToolbarYes) See also: Hide/Unhide Navigation Pane Access