I have this:
for(int i=0;i<5;i++){
lbl1.setText(""+tarningar[i]);
Now I would like to change lbl1 to lbl+i.. so it prints out on lbl0,lbl1,lbl2,lbl3,lbl4.
How can I do this?
I have this:
for(int i=0;i<5;i++){
lbl1.setText(""+tarningar[i]);
Now I would like to change lbl1 to lbl+i.. so it prints out on lbl0,lbl1,lbl2,lbl3,lbl4.
How can I do this?