For me just unbind, do something, bind back:
// unbind
comboBox0.SelectedIndexChanged -= new System.EventHandler(this.comboBox0_SelectedIndexChanged);
// do your staff
// .....
// bind back
comboBox0.SelectedIndexChanged += new System.EventHandler(this.comboBox0_SelectedIndexChanged);