Custom Button Scope Limitation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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 said:
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.
 
Back
Top