View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Troubled User Troubled User is offline
external usenet poster
 
Posts: 85
Default Hide Show Command Buttons

I am hiding a command button(s) with the following statement

CommandButton1.Visible = False

I then need to display all of the buttons on the page. I had tried:

Application.CommandBars("Control Toolbox").Controls("&Design Mode").Execute
CommandButton1.Visible = True

But that didn't work.

Thanks in advance for any help.