Question:
How can I tell which values are loaded in a ComboBox?
Solution:
To do so, you must use ComboBox’s ListCount property to find out the number of items, and List property to display each item.
Sample script being executed in a button:
If Screen.Item(“ComboBox2”).ListCount <> 0 Then
For aux = 0 To Screen.Item(“ComboBox2”).ListCount-1
MsgBox Screen.Item(“ComboBox2”).List(aux)
Next
End If