Hi, for a few days I've been trying to convert an Android App into an iOS App. I'm encountering several problems, which is why I'm posting. I have a
B4XComboBox with several items (rows), and every time an item is selected and a control used it must delete the same so that it can no longer be used,
with B4A I used the following code successfully. I called the B4XComboBox combora
Unfortunately B4I does not support cmbBox or RemoveAt, what is the best solution to solve this problem? can anyone help me
B4XComboBox with several items (rows), and every time an item is selected and a control used it must delete the same so that it can no longer be used,
with B4A I used the following code successfully. I called the B4XComboBox combora
B4X:
Dim posizione As Int = combora.cmbBox.IndexOf(l.Text)
'l.Text is the row that needs to be deleted
If posizione <> -1 Then
combora.cmbBox.RemoveAt(posizione)