I have:
Dim Panels(30) as Panel
Then I do a loop:
for i = 0 to 29
Panels(i).Initialize("")
Panels(i).LoadLayout("1.bal")
... access directly the Labels and other objects from the LoadLayout before the next loop
Next
Inside this Layout there are labels and customgridview
The thing is, how can access AGAIN like the Panels(10) ? I want to change ou interact with the CustomGridView that is part of that Panels(10)
Thanks
Dim Panels(30) as Panel
Then I do a loop:
for i = 0 to 29
Panels(i).Initialize("")
Panels(i).LoadLayout("1.bal")
... access directly the Labels and other objects from the LoadLayout before the next loop
Next
Inside this Layout there are labels and customgridview
The thing is, how can access AGAIN like the Panels(10) ? I want to change ou interact with the CustomGridView that is part of that Panels(10)
Thanks