BLSwagger10 said:Now, my window shows up with all 6 buttons and the text but clicking any of the buttons doesn't do squat.
Because you haven't set their action commands?
BLSwagger10 said:Code:if(actionCommand.equals("R"))
Code:
if("R".equals(actionCommand))
is better. Using a constant instead of embedded strings is probably even better.
Edit: For the radio buttons, you're picking up the event fine - your problem is in what you're doing after that.