Answer by
redbaron (6)
In VBA a toolbar is a command bar. A command bar could be a toolbar or a menu.
In the CommandBars Collection Object use the Add method.
Here is an example of creating a toolbar of the name "Test Toolbar" docked at the top and visible:
Set cbar = CommandBars.Add(Name:="My Toolbar", Position:=msoBarTop)
cbar.Visible = True