
COMBOBOX.BOUNDTEXT VALUE CHANGES TO DIFFERENT FIELD VALUE
Why does the boundText value reference change to different field when
refreshing?
How can I allways get the reference to CustomerID field?
I have following comboBox propertis
BoundColumn = customerID
FieldList = CustomerName
PROBLEM:
msgbox myComboBox.BoundText => show content of customerID
myComboBox.refresh
msgbox myComboBox.BoundText = show content of CustomerName
FINLAND