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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top