Hi,
This should work so it must be a bug. It's been escalated to our developers, and I will update you here when it's fixed.
In the mean time you can use the AddItem mode to add data, especially easy for a small grid like the sample
Me.C1Combo1.DataMode = DataModeEnum.AddItem
C1Combo1.AddItemTitles("Value;Display")
For i As Integer = 0 To 1
C1Combo1.AddItem(dataSource(i).Value & ";" & dataSource(i).Display)
Next
regards,
Greg L
Issue ID: VNLST000646