hi,
ok that sounds good but works not correctly (or i did it the wrong way

)
Code:
hfm.deleteAll();
fields = new LabelField[5];
for (int i = 0; i < 5; i++) {
fields[i] = new LabelField("Das ist Feld #"+i);
}
hfm.add(fields[0]);
hfm.add(fields[1]);
hfm.add(fields[2]); but all the fields are displayed in on line, it looks like this:
Das ist Feld #1Das ist Feld #2Das ist Feld#3
it would be better if each labelField get it's own row ;)
i also tried
Code:
fields[i] = new LabelField("Das ist Feld #"+i,LabelField.USE_ALL_WIDTH); but then only the first field is displayed and nothing from the other fields...
hibbert