Vb code for hiding (form control )Buttons

bamaisgreat

Well-known Member
Joined
Jan 23, 2012
Messages
831
Office Version
  1. 365
Platform
  1. Windows
I am needing some code for hiding the Buttons on a sheet when I run a macro. Any help is appreciated. Thanks to all.:)
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Try...

Code:
Sub HideButtons()

    Dim Btn As Button
    
    For Each Btn In ActiveSheet.Buttons
        Btn.Visible = False
    Next Btn
    
End Sub
 
Upvote 0
Try...

Code:
[font=Courier New][color=darkblue]Option[/color] [color=darkblue]Explicit[/color]

[color=darkblue]Sub[/color] HideButtons()

    [color=darkblue]Dim[/color] ButtonName [color=darkblue]As[/color] [color=darkblue]Variant[/color]
    [color=darkblue]Dim[/color] ButtonNames [color=darkblue]As[/color] [color=darkblue]Variant[/color]
    
[color=green]'   Change/add button names accordingly[/color]
    ButtonNames = Array("Button 2", "Button 3", "Button 4")
    
    [color=darkblue]For[/color] [color=darkblue]Each[/color] ButtonName [color=darkblue]In[/color] ButtonNames
        ActiveSheet.Buttons(ButtonName).Visible = [color=darkblue]False[/color]
    [color=darkblue]Next[/color] ButtonName
    
[color=darkblue]End[/color] [color=darkblue]Sub[/color]
[/font]
 
Upvote 0

Forum statistics

Threads
1,223,909
Messages
6,175,315
Members
452,634
Latest member
cpostell

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top