views:

164

answers:

2

Hi,

Is there a way to hide a jButton in Netbeans? (similar to button.visible = false in VS)

+2  A: 

myButton.setVisible(false);

Midhat
+1  A: 

You are looking for, button.setVisible(false);

Chandru