Hide a form button

  • Thread starter Thread starter Michael Singmin
  • Start date Start date
M

Michael Singmin

Hello Group,

Does a form button have a visible function ?

Thanks,

Michael Singmin
 
DId you try it?

One way:

ActiveSheet.Shapes("Button 1").Visible = False

or, to toggle:

With ActiveSheet.Shapes("Button 1")
.Visible = Not .Visible
End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top