Hello,
I have an issue hiding and showing toolbars in Excel. The problem is that in order to make my application work properly I have to get rid of the default toolbars on the spreadsheet. Then, when the user closes my application, the tollbars should be placed back. But if the user had additional buttons on the standard toolbars, these buttons would be deleted. In other words no customization is kept. In order to hide and show the toolbars I use:
Application.CommandBars("Standard".Visible = HideShow
Application.CommandBars("Formatting".Visible = HideShow
where HideShow can be true or false. Is there any way to solve my problem?
Thank you.
I have an issue hiding and showing toolbars in Excel. The problem is that in order to make my application work properly I have to get rid of the default toolbars on the spreadsheet. Then, when the user closes my application, the tollbars should be placed back. But if the user had additional buttons on the standard toolbars, these buttons would be deleted. In other words no customization is kept. In order to hide and show the toolbars I use:
Application.CommandBars("Standard".Visible = HideShow
Application.CommandBars("Formatting".Visible = HideShow
where HideShow can be true or false. Is there any way to solve my problem?
Thank you.