Hallo zusammen!!!
Wie kann ich eine durch eine Variable definierte Anzahl von JRadioButtons erstellen?
Hab mir das so gedacht aber es funktioniert nicht.
Danke im Voraus
Wie kann ich eine durch eine Variable definierte Anzahl von JRadioButtons erstellen?
Hab mir das so gedacht aber es funktioniert nicht.
Code:
for (int i = 0; i < var1; i++)
{
JRadioButton button[i] = new JRadioButton ("String[i]")
button[i].setMnemonic (KeyEvent.VK_B);
button[i].setActionCommand("String[i]");
}
Danke im Voraus