View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default Custom Button Scope Limitation

Ron,

Use the Activate and Deactivate events to show or hide the
command bar.


Private Sub Workbook_Activate()
Application.CommandBars("MyCommandBar").Visible = True
End Sub

Private Sub Workbook_Deactivate()
Application.CommandBars("MyCommandBar").Visible = False
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"RonF" wrote in message
...
I've added a custom toolbar button to my excel program, and it

now appears in all excel applications. How can I have it appear
just in the program where I want it.

Thanks