View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default 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 ?