I have created a control (Class Module - Custom View (XUI) with Name MyComboBox ).
Its placement in Activity or Panel or B4XPages is done normally with both the designer and the code.
How can I (within the control) read all the same controls I have placed in the same Activity or Panel or B4XPages.
I try to put this code inside to my control in Sub Show to close all popups from the same controls before open to focused control.
For Each v AS B4XView In CallBack
If v Is MyComboBox Then
Dim mc As MyComboBox = v
v.Hide
End If
Next
Where CallBack is then container than put then controls ( Panel, Activity, B4XPage )
Any Help