Users Awaiting Email Confirmation
Vielen Dank.
Hab ein weiteres Problem:
Zitat
private void addCountries()
{
int i = 0;
do
{
try
{
CountryCode.addItem(CountryCodeList[i][0]);
i = i + 1;
} catch (Exception ex)
{
}
} while (i == CountryCodeList.length);
}
...
Er fügt nur mein "DE" in die JComboBox ein, wenn ich ne Schleife mache.
Wenn ich sie einzeln, also mit
Zitat
CountryCode.addItem(CountryCodeList[1][0]);
CountryCode.addItem(CountryCodeList[2][0]);
Etc.
...
funktioniert es.
Yes. Ich bin bescheuert. 
muss natürlich != length.
Geändert von Engel der Furcht (27.02.2013 um 20:31 Uhr)