Toolbars take up valuable screen space, particularly on small screens and laptops, so it would be nice to be able to toggle the most frequently used bars on or off.
Word provides such access to the toolbar for the Drawing tools via the button, but for the others, the route is via a right click in the toolbar to enable you to check the required bar. It is, however very simple to create a macro to toggle the toolbar(s) on or off.
Sub ReviewToolbar()
With CommandBars("Reviewing")
.Visible = Not .Visible
End With
End Sub
Sub MergeBar()
With CommandBars("Mail Merge")
.Visible = Not .Visible
End With
End Sub
Sub ToggleTextBoundaries()
With ActiveWindow.View
.ShowTextBoundaries = Not .ShowTextBoundaries
End With
End Sub
This page is only for users of Word before version 2007, of which there are still many around, so this page made the cut when the site was re-developed.