Hallo,
I am creating a couple of lables (multiple instances) programmatically like this:
After the loop is finished I need to access a specific instance and change its text, for example the third lable.
If I had an array I could probably do it like this:
How can I do this?
thx
Heinz
I am creating a couple of lables (multiple instances) programmatically like this:
B4X:
for i=0 to 10
Dim b As Label
b.Initialize("label")
b.TextSize = 30
b.tag=i
next
If I had an array I could probably do it like this:
B4X:
b(2?).text = "Test"
thx
Heinz