1
vote
2answers
46 views
JButton in Java swing
Is there a way to check whether a button is enabled is set to true or false through code?
1
vote
3answers
47 views
Making a JButton stay depressed manually
I would like to make a JButton stay pressed down and not be able to be pressed again until some event occurs is there an easy way to do this?
3
votes
4answers
62 views
How to create a JButton with a menu ?
I want to create a Toolbar for my application.
If you click a button on that toolbar , it will pop-up a menu , just like the toolbar of eclipse.
I don't know how to do it in Swing …
-1
votes
3answers
137 views
How to disable javax.swing.JButton in java?
I have created a swings application and there is a "Start" button on the GUI. I want that whenever I clicked on that "Start" button, the start button should be disabled and the "St …
0
votes
7answers
96 views
Place button side by side
Hi, how can I make a button place side by side. I used a gridBagLayout to design the layout.The problem is that the button place too far from each other. I have tried to choose the …
1
vote
4answers
109 views
How to change the look of a disabled JButton in java
I am making a game and when I disable a button with setEnabled(false); the buttons turn grey which clashes with the other colors in the game. Is their a way to change the color of …
0
votes
1answer
86 views
Setting Mnemonics and Hot Keys for a JOptionPane Dialog
Is it possible to assign hotkeys and mnemonics to the buttons in a JOptionPane Dialog? I'd like to be able, in a JOptionPane generated message dialog with the options Yes, No and …
0
votes
3answers
454 views
JButton needs to change JTextfield text
This is homework. Beginning Java class. Still wrapping my head around this stuff.
The project is to make an Inventory Management System.
I have everything figured out except ho …
0
votes
1answer
66 views
JButtons need to modify 8 JTextFields using an Array. Listen to Buttons or Text?
This is homework. Beginning Java class. Still wrapping my head around this stuff.
This questions Extends this one
So there is a button for First, Prev, Next, and Last
Each shou …
0
votes
3answers
91 views
Using <html><u> tags to make button text underlined, caused button to take up entire JToolBar
I need to have a button whose text is underlined and the only way I could find to do this in Java was to use and tags but when I do this, it causes the button to take up as much …
0
votes
1answer
165 views
How to get JButton default background color ?
I use this : myButton.setBackground(myColor) to change the button background color to my color, how to find it's original default background color so I can change it back ? I know …
0
votes
2answers
48 views
Changing the color of a font and making it underlined
I need to make a font underline and blue for a hyperlink in one of my JButtons, but it seems the font class has no obvious way to do this. I can't use attributedtext because I'm n …
0
votes
2answers
61 views
Adding a child component to a JButton
Is it possible to place a child component inside a JButton and make it transparent to a subset of mouse events so that:
The child component receives MouseMotionEvents (so it can …
0
votes
1answer
50 views
Problem with 2D Array of JButton
I need to put number(2d array) on the top left of JButton. But, i got the number result in wrong ordder (upside down), not as the same as the array topLeftNum order. How to make it …
0
votes
3answers
432 views
How to create a JButton extension with rounded corners?
This is a continuation of the question "Java rounded Swing JButton". I have searched for an extension of javax.swing.JButton which will inherit all runtime behavior and just overri …
