Thread: Toolbars
View Single Post
  #2   Report Post  
FSt1
 
Posts: n/a
Default

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

regards
FSt1

"dstiefe" wrote:

I've created my own toolbar. what VBA code would I write to select/delete
that specific toolbar?