I have a form with a series of 64 labels with Id lbl0, lbl1, lbl2, . . . . , lbl61, lbl62, lbl63
I am struggling to work out how to reference each in a for/next loop via their Id in order to populate the label text:
I am struggling to work out how to reference each in a for/next loop via their Id in order to populate the label text:
B4X:
Dim tmp As String
For b = 63 To 0 Step -1
tmp = "lbl" & b
' How to reference labels with Id lbl63, lbl62, . . . . , lbl2, lbl1, lbl0 as we step through loop?
Next