Tagged Questions
4
votes
1answer
17 views
Is there a way to change font color of Jradiobuttons using the UImanager
I know I how to change the font of a JRadioButton using UIManager and I know how to change the color of a JRadioButton, one button at a time. However is there a way, using the UIManager to change ...
3
votes
1answer
34 views
adding JRadioButton to RadioButton group
Good day
Would like to know how to add radiobuttons to a ButtonGroup by dragging and dropping components on to the frame.
JRadioButton male = new JRadioButton("Male");
JRadioButton female = new ...
3
votes
2answers
60 views
JRadioButton that looks like JButton
I'm trying to create a feature similar to that of Geogebra's toolbar: it has buttons that select tools, so only one can be selected at a time, but they don't look like radio buttons (a dot, with an ...
3
votes
1answer
657 views
Change JCheckBox/JRadioButton selection color
Is there a way to change the selection color of a checkbox/radiobutton?
3
votes
3answers
682 views
JRadioButton border/padding/insets/margin… whatever you call it
In my Java app I am trying to create a very simple form with a label and a set of controls on each row of the form. Imagine something like this crude ASCII diagram:
Result 1: (*) pass ( ) fail
...
2
votes
1answer
134 views
Listening on ButtonGroup for “child” changes, and print selected JRadioButton's text
What I want to is:
Create an event that fires if the a JRadioButton contained in the ButtonGroup is selected, and then print the text there is on the JRadioButton.
2
votes
2answers
221 views
Rectangular Java Swing Radio buttons?
I'd like to create a set of buttons in a Java Swing application like you get in a typical tool palette in a paint program. That is, a set of small square buttons, each containing an icon, only one of ...
2
votes
2answers
313 views
Java: What's the difference between ActionEvent and ItemEvent on a JRadioButton?
They're both raised once after the mouse button is released and both can have all the information available on the JRadioButton right? Is there any difference?
2
votes
2answers
307 views
How to manage two JRadioButtons in java so that only one of them can be selected at a time
How to manage two JRadioButtons in java so that only one of them can be selected at a time? Is there any method in java to take care of this or you need to build your own logic?
1
vote
3answers
77 views
How do I combine a JTextField and a JRadioButton?
I would like to have a JRadioPanel with three options. The first two are hardcoded options, and I want the third to be an 'Other' button. I would like to have a JTextField instead of text as the title ...
1
vote
4answers
76 views
ActionListener can't reference array from public class?
Why is public void actionPerformed (ActionEvent event), colorButton[] highlighted as cannot find symbol or variable?
How do I debug it? I'm trying to make colorButton[] defined in public void ...
1
vote
4answers
123 views
How to get the text value of JRadioButton
I am creating a project in java. My Program has 80 JRadioButtons .... I need the get the text value of them.. Now these radiobuttons are added to ButtonGroup(each has 4 radio buttons)...
I know how ...
1
vote
3answers
105 views
JRadioButton: how to replace text by IconImage
I want to replace the text in my radio button list by an icon
I've tried this :
rotateButton = new JRadioButton(rotateIcon.getImage());
but this replaces the radio and text by the icon, I would ...
1
vote
2answers
189 views
How to increase size of JRadioButtons & JCheckBoxes?
I have a checklist with radio buttons and check boxes, I want to make the the circles and the boxes little bigger than their default size.
1
vote
6answers
153 views
What is the best way to determine what JRadioButton is selected?
Currently I'm getting the selected button in this way, but I don't if this is the right/best method. MAybe there something more easy or object oriented than this.
private int ...
1
vote
2answers
278 views
JRadioButton itemlistener not firing
Hello my Japplet is using a JComboBox and 5 JRadioButtons to draw and paint on the applet. Currently everything works except for my JRadioButtons which doesn't call the itemStateChanged() when a ...
1
vote
2answers
308 views
Use JRadioButtons to set two text fields
Very new to Java here. How do I use a JRadioButton to set two different text fields? The three buttons are:
1. 7 at 5.35%
2. 15 at 5.5%
3. 30 at 5.75%
Choice 1 sets field1 to 7 and field2 to 5.35
...
1
vote
2answers
207 views
JComboBox within a JRadioButton
Say I wanted to add a JComboBox (or more general a JPanel, perhaps?) to a JRadioButton, what would be the easiest way to do it?
Pseudo-wise, a radio button group where one of them includes multiple ...
1
vote
2answers
250 views
Rich swing radiobutton
Developing a desktop application based on Java + Swing I faced the problem of creating a radio button which instead of text next to it, should have and image or, say, another widget like a spinner.
...
0
votes
1answer
60 views
radioButton does not show selected status
with the following snippet, the function of on/off is being achieved.
however, the VISUAL does NOT display the radioButton as "selected".
i am looking for help/direction in displaying the selected ...
0
votes
2answers
40 views
Deselected JRadioButton
The code I'm creating involves a JRadioButton and a JComboBox. I want the JComboBox to be enabled if the JRadioButton is selected and disabled if it's not selected or deselected. My problem is that ...
0
votes
1answer
29 views
setSelected a specific jradiobutton in a buttongroup based on action command
i want to setSelected a speicfic jradiobutton in a buttongroup based on the actionCommand(/name of the specific jradiobutton).
it could be done usind .setSelected(true)
for example,
JRadioButton ...
0
votes
2answers
50 views
How to vertically align text and image above a JRadioButton?
Is it possible to align both the text and image above the JRadioButton icon?
Edit -
Well, apparently setting the icon in the constructor actually replaces the default JRadioButton icon, which I ...
0
votes
4answers
71 views
JRadioButton cannot be cast to JButton
I have actionPerformed() method which does two things: print out the radio buttons selected and set visibility of labels in another class. I get cannot be cast to error when the radio button is ...
0
votes
1answer
47 views
How to make JRadioButtons change properties (JFrame)?
How can I make my JRadioButton enable/disable a JComboBox in JFrame?
0
votes
2answers
173 views
how to add a round border to a jradiobutton
Hi I need to add a Round Border, that could be etched, beveled etc.
for a JRadioButton.
to allow the button to keep its round appearance.
but i cannot find any round borders.
does anyone know how to ...
0
votes
3answers
98 views
JRadio button with information link
I want to have a set of JRadioButtons and next to each one a little 'i' image which when clicked will open a new window with information about the text next to the radio button. What is the best ...
0
votes
2answers
275 views
Changing JRadioButton Icon on Windows 7
I created a method which changes the icon of all jradiobuttons from a buttongroup:
public void setRadioButtonIcons(final ButtonGroup gruppe){
Enumeration<AbstractButton> gruppeEnum = ...
0
votes
2answers
472 views
how to use JRadioButton groups with a model
Is there any way to associate a group of JRadioButtons with a data model so it is easier to tell which button (if any) is selected?
In an ideal world, I would like to associate a group of N ...
-1
votes
1answer
1k views
Java - pass value of one radio button that selected to another frame
Is there any code that I can use to pass value of selected radio button to another frame?
This is my code:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class bookBatman ...