I have inserted a VComboBox that contains 5 items and each item has its own numeric value
When I select an item, correctly in the Change event it returns me the value.
But the item does not appear in the view but the value which is an index while the selected item should appear.
Why does it happen, is it a bug?
I have attached an example that reproduces the error
B4X:
VComboBox1.AddItem(1,"One")
VComboBox1.AddItem(2,"two")
VComboBox1.AddItem(3,"three")
VComboBox1.AddItem(4,"four")
VComboBox1.AddItem(5,"five")
When I select an item, correctly in the Change event it returns me the value.
But the item does not appear in the view but the value which is an index while the selected item should appear.
Why does it happen, is it a bug?
I have attached an example that reproduces the error