Force a command bar to display all of its commands, even if this forces the command bar to wrap to a 2nd or 3rd line

Article contributed by Bill Coan

When a command bar has too many controls to fit on one line, the command bar first drops any controls that don't have priority. If the command bar still doesn't fit on one line, then the command bar wraps to the next line.

For Each oControl In CommandBars("Standard").Controls
    oControl.Priority = 1
Next oControl