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
Use the -= operator.
this.MyEvent -= MyEventHandler;
Your question indicates you don't have a good understanding of events in c# - I suggest looking deeper into it.