hi,
Add a custom tool bar:
Application.CommandBars.Add(Name:="CTB").Visible = True
Delete a custom tool bat:
Application.CommandBars("CTB").Delete
Hide a custom tool bar:
Application.CommandBars("CTB").Visible = False
Show a custom tool bar:
Application.CommandBars("CTB").Visible = True
hi,
Add a custom tool bar:
Application.CommandBars.Add(Name:="CTB").Visible = True
Delete a custom tool bat:
Application.CommandBars("CTB").Delete
Hide a custom tool bar:
Application.CommandBars("CTB").Visible = False
Show a custom tool bar:
Application.CommandBars("CTB").Visible = True