Hi,
I am working with combobox.
I am able to fill combobox by using below :
B4X:
Private Sub btn1_Click
'xui.MsgboxAsync("Hello world!", "B4X")
Dim item As List
item.Initialize
For i = 1 To 10
item.Add(i)
For Each itemnode As Int In item
cbo1.Items.Add("ItemNo " & itemnode)
Next
item.Clear
Next
End Sub
I want to get the Index of the Items from combo when click on that item.
How to get the indexes?