Community discussion forum

how do you hide all in VB6

  • 11 months ago
    In VB6 instead of going ., me.command1.visible = true me.command2.visible = true me.command3.visible = true etc is there a way to hide all? i think it looks really rubbish otherwise
  • 11 months ago
    ' will hide each and every commandbutton For Each CommandButton In Controls CommandButton.Visible = False Next or put all controls in a picture box, and do picture1.visible=false

Post a reply

Enter your message below

Sign in or Join us (it's free).

We'd love to hear what you think! Submit ideas or give us feedback