I have a dialog form that has 4-5 combobox controls on it. Selecting something in any of the comboboxes affects the other ones.
Is there any way to highlight an item in a combobox without firing the SelectedIndexChanged event?
Or failing that, is there any way to control what happens when a combobox is programmatically selected vs. when the user manually selects an item?
Someone suggested using RemoveHandler and Addhandler, but that smells like a kludge. Any other ideas, or is this the right way to approach it?
Is there any way to highlight an item in a combobox without firing the SelectedIndexChanged event?
Or failing that, is there any way to control what happens when a combobox is programmatically selected vs. when the user manually selects an item?
Someone suggested using RemoveHandler and Addhandler, but that smells like a kludge. Any other ideas, or is this the right way to approach it?