Logo 
Search:

Java Answers

Ask Question   UnAnswered
Home » Forum » Java       RSS Feeds
  Question Asked By: Leon Hansen   on Jan 13 In Java Category.

  
Question Answered By: Danny Perkins   on Jan 13

You need to create a ButtonGroup object and then add all radio buttons that work
together as one group!

ButtonGroup group = new ButtonGroup();
group.add(radio1);
group.add(radio2);
...

It then works fine!

Share: 

 

This Question has 9 more answer(s). View Complete Question Thread

 
Didn't find what you were looking for? Find more on GUI problem Or get search suggestion and latest updates.


Tagged: