Thread: custom toolbar
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Luciano Severino[_2_] Luciano Severino[_2_] is offline
external usenet poster
 
Posts: 1
Default custom toolbar


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.