Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
49 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 ...
2
votes
2answers
74 views

adding ButtonGroup to Box-layout object

When I try to put ButtonGroup object to my Box object, compiler returns the following error: no method for such a type Please help me, how can I add my ButtonGroup into Horizontal Box?
2
votes
2answers
101 views

How can I determine which JCheckBox caused an event when the JCheckBox text is the same

I am working on a program that needs to determine which JCheckBox was selected. I am using three different button groups, two of which have overlapping text. I need to be able to determine which ...
2
votes
1answer
174 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
1answer
393 views

How to create ButtonGroup of JToggleButton's that allows to deselect the actual option?

That's it. I need to create a ButtonGroup that allows to select a option or, if the user click on the selected option, deselect the item (nothing will be selected) and, of course, capture the event to ...
1
vote
4answers
146 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
1answer
102 views

How to create a new ButtonGroup in scala containing RadioButtons?

I am having trouble creating a ButtonGroup containing radio buttons in the Scala Programming Language. The code I am using is as following: val buttongroup = new ButtonGroup { buttons += new ...
1
vote
2answers
110 views

plMortgage Calculator GUI Issue with A Lot

I am having a lot of issues with this application. I have been at this all day and cannot get this figured out. I have a Java application that is for a class. The issue that I am having is trying to ...
0
votes
1answer
50 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
191 views

Java Mortgage Calculor GUI Issue

I am sort of new to programming, well at least programming in Java, I am in a class at the moment and I just need someone to point me in a direction. I am having an issue getting all the JPanels to ...
0
votes
1answer
177 views

Toggle a component's 'enable' property according to a radio button in netbeans

I have two radio buttons in a button group...And in the same panel I have a text box and a button...I want to enable the text box and the button only when the second button is selected and be disabled ...
0
votes
3answers
948 views

How to determine which radio button is selected in a button group in java

What can I do to get which radiobutton is selected on a buttongroup without doing this: if (jRadioButton1.isSelected()) { ... } if (jRadioButton2.isSelected()) { ... ...