View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Papa Jonah Papa Jonah is offline
external usenet poster
 
Posts: 148
Default removing a toolbar with code

I have been trying to get a file to remove a toolbar when the file is closed.
Currently the toolbar is generated with code upon opening the file. This
works good.
But, I cannot figure out how to get it to delete when I close the file.
This is what I have at this point:

Private Sub App_WorkbookBeforeClose(ByVal Wb As Workbook, _
Cancel As Boolean)
Application.CommandBars("my toolbar").Delete
Cancel = False

End Sub

TIA