Re: Listview SelectedIndexChange by rich
rich
Wed Mar 01 00:23:31 CST 2006
On Wed, 1 Mar 2006 10:30:23 +1100, Jared wrote:
> How would you prevent duplicate firing when changing from 3 selected items
> to 1?
>
> I am going to try use another event...
You have to do it manualy by setting BindingContext property of the control
before you set any dataBindings.
It is a BUG, listed in Knowledge Base. I lost whole day to figure it out.
eg.
Dim bContext as New BindingContext
MyComboBoxControl.BindingContext = bc
...
now you can set any DataBindings
same for the listbox control
Cheers!