hiding forms button

  • Thread starter Thread starter bigtonyicu
  • Start date Start date
B

bigtonyicu

I guess the name says it all I'm wondering if there's anyway to hade
form button. I want to creat a macro that will hide all the form
button and protect the sheet

when I try to just hide the columns it just moves the buttons to th
right and leaves them there.

please help a newb..
 
bigtonyicu,

Private Sub CommandButton2_Click()
CommandButton1.Visible = False
End Sub

and to show it again:

Private Sub CommandButton3_Click()
CommandButton1.Visible = True
End Sub

Henry
 
Back
Top