Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to create a hidden button in netbeans. Suppose if I click a Next button then a new "Exit" button will be appear in the same jFrame. Until I click the Next button the Exit button will not be shown. So how to make it? I mean how to make a button which is by-default in .setVisible(false) in netbeans?

Please help me out about this problem.

share|improve this question

2 Answers

up vote 4 down vote accepted

Since you already seem to know the proper method I assume you doubt is about Netbeans operation.

Right click in the method and select "Customize Code".

Then you'll have the chance to add the proper code after the button creation.

share|improve this answer
Thank you so much Madth. You solved my problem. Its working 100% – Tushar Nov 24 '12 at 1:09

Just use JButton.setVisible(false); right after you create the button.

share|improve this answer
I have to write your line line in generated code in netbeans. NetBeans is not allowing me to do that. So where to write it? – Tushar Nov 24 '12 at 0:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.