Group: Forum Members
Posts: 2K,
Visits: 6.6K
|
Likely the problem is that BindingProperty isn't setup correctly. This is the property of the combo that is bound to the data. In your second example you are adding strings, so there is no SelectedValue property available (or it is always DBNullValue). You'd need to use SelectedText instead. Likely this is also the issue with the first example. It could be that you need to use a different property of the DevEx combo to get the correct value, based on how you are filling it.
|