Hide a form button
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
In article ,
Michael Singmin wrote:
Does a form button have a visible function ?
|