Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1825
Binding coded Valuelist to UltraCombo
posted

Hi all!

I am trying to bind a coded valuelist to an UltraCombo.

My code is this:

Dim cboValueListe As New Infragistics.Win.ValueList

cboValueListe.ValueListItems.Add(1, "Tab")

cboValueListe.ValueListItems.Add(1, "Header")

 

With locElement

.DataSource = cboValueListe

End With

End Sub

where lcoElement is the Ultracombo.

and here is the unexpected result:

any ideas?