![]() |
Custom Button Scope Limitation
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 |
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 |
All times are GMT +1. The time now is 02:22 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com