Hi,
Is there a way to hide a jButton in Netbeans? (similar to button.visible = false in VS)
myButton.setVisible(false);
You are looking for, button.setVisible(false);
button.setVisible(false);