I created a panel and let user add controls inside the panel, then i want collect the infomation about the controls.
i did it in vb.net
how can i do it at android?
i did it in vb.net
B4X:
Dim mycontrol as Control
If answer20 = 1 Then
For Each mycontrol In Me.panel_status.Controls
If (mycontrol.GetType.ToString = "Smart_Home___TCP.DoubleBufferedPictureBox") Then
If mycontrol.Name = "ID09" Then
mycontrol.BackColor = Color.Green
End If
End If
Next
End If
how can i do it at android?