If I have a combobox click event set in the designer.cs page and then at some point during the running of the program, based on some condition, I no longer want the combobox
Assuming your handler is assigned like this:
this.comboBox1_Click += new System.EventHandler(this.comboBox1_Click);
disable it like this:
this.comboBox1.Click -= new System.EventHandler(this.comboBox1_Click);