Thread: custom toolbar
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bernie Deitrick Bernie Deitrick is offline
external usenet poster
 
Posts: 5,441
Default custom toolbar


Luciano,

Excel 2007 doesn't use toolbars anymore.

See the section

Excel 2007 Ribbon and QAT pages

http://www.rondebruin.nl/tips.htm


HTH,
Bernie
MS Excel MVP



"Luciano Severino" wrote in message
...
I had made those procedures same next exemples:

Private Sub Workbook_Open()
Application.CommandBars("MyToolBar").Visible = True
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.CommandBars("MyToolBar").Visible = False
End Sub


Itīs running well. But when I save my workbook to another PC with Excell2007
the "MyToolBar" doesnīt apearence.
Anybody know why itīs happen?
Thanks.