Visible « Button « Java Swing Q&A





1. Java Swing completely rounded JButton (circle outside area can't be clicked nor visible)    stackoverflow.com

I've been trying to implement a completely free bordered JButton :

2. my JButtons are not visible.    coderanch.com

3. Swing Buttons visible in Linux but not Windows    coderanch.com

Thank you for your suggestions, Joe and Anand. Meanwhile I found out the cause (I post it for everybody else encountering a similar feature): I had set the screen size explicitly (as opposed to using frame.pack()) and also used the method BorderFactory.createEmptyBorder() with fixed numbers (for distance from top, left, bottom, right) for some gui elements. On a screen having height=1024, ...

4. Invisible Buttons still visible    coderanch.com

In our application ,(Talking about applet )when we press a button on our main screen( that is a frame), another frame is open. We have to disable the buttons on previous frame and we have achieved this but the problem is ,the disabled buttons of previous frame are visible on the current frame, although we set their visibility false , that ...