I have a little problem when setting the DataSource on a combo.
I have a helper method which I pass in a combo and a default item.
Within this method the combo's DataSource is set which fires the SelectionChanged event. The Selectionchanged event then calls this helper method again so that the DataSource for another combo can be set based on the selected ID from the first combo. This process is then repeated for 6 more combos and each time a call to the database is made to get the new data.
After the DataSource has been set within this method I then set the SelectedValue of the combo with the passed in defaultItem. This then causes the chain to start again and of course all the database calls.
What's the best way of getting round this?
I've tried using the SelectionChangeCommitted event but this doesn't start the chain off.
Thanks in advance.
I'm using C#.Net 4.0
It's not the prettiest, but I've usually dealt with this by setting some kind of manualSelectionChangeInProgress member field in the class, so I'd set it to true before setting SelectedValue and false after, then have a check for the field value before initiating the whole datasource process you're trying to avoid.