🔒 Closed RADIO BUTTONS - Help Java Simple Program

Status
Not open for further replies.

Ve3

Eternal Poster
1602518182079.webp



Hi guys. Pa help naman dun sa mga radio buttons more than one ang na se select, gusto ko lang sana isa lang. Help me po thank you.
btw Java awt at Swing pa lang po ito.
 
Java:
        // Create a ButtonGroup to group our radio buttons into one group. This
        // will make sure that only one item or one radio is selected on the
        // group.
        ButtonGroup group = new ButtonGroup();
        group.add(button1);
        group.add(button2);
        group.add(button3);
        group.add(button4);
 
Status
Not open for further replies.

About this Thread

  • 4
    Replies
  • 333
    Views
  • 3
    Participants
Last reply from:
Ve3

Online now

Members online
721
Guests online
2,375
Total visitors
3,096

Forum statistics

Threads
2,320,232
Posts
29,204,940
Members
1,180,617
Latest member
milcu456
Back
Top