Tagged Questions
2
votes
1answer
90 views
How is JSpinner different than other swing components?
I have a method that can recursively enable/disable all components within a JPanel. There are also exception lists. So I can do the following
Disable all components in panel1 except for textfield1, ...
0
votes
1answer
127 views
Java JSpinner painting twice
Quick picture to show what is happening
The JSpinner is appearing twice as seen in the picture above. The first appearance at point (0,0) that should not be there is not selectable, editable or ...
1
vote
2answers
335 views
Create a margins editor component like the one in Microsoft word
I have a Java Swing application that i want to create a nice component in it like a component in Microsoft word. In Microsoft word you can change the margins of your document like in here :
The ...