J
jeff
I have code in a form load (and I tried it in New() too) that says:
"Removehandler me.comboCity.SelectedIndexChanged,
me.comboCity_selectedIndexChanged"
I needed to disable processing of the combo being changed while the control
binds to the arraylist data via standard data binding during form load.
Then after the data loads and the form is done I code:
"AddHandler me.comboCity.SelectedIndexChanged, AddressOf
me.comboCity_selectedIndexChanged"
But the event still fires while the databinding is taking place, why? The
event was supposed to be disabled?
Thanks,
Jeff
"Removehandler me.comboCity.SelectedIndexChanged,
me.comboCity_selectedIndexChanged"
I needed to disable processing of the combo being changed while the control
binds to the arraylist data via standard data binding during form load.
Then after the data loads and the form is done I code:
"AddHandler me.comboCity.SelectedIndexChanged, AddressOf
me.comboCity_selectedIndexChanged"
But the event still fires while the databinding is taking place, why? The
event was supposed to be disabled?
Thanks,
Jeff