Hi,
ich habe ein Problem:
Ich will meine RadioButtons in eine jeweilige Box bringen, nur wie schaffe ich das?
Der Code hier funzt wohl ned :-(
ich habe ein Problem:
Ich will meine RadioButtons in eine jeweilige Box bringen, nur wie schaffe ich das?
Java:
for (int i = 0; i < 4; i++){
answer[i] = new JRadioButton("TEXT");
answer[i].addActionListener(this);
box[i].add(answer[i]);
}
Der Code hier funzt wohl ned :-(