Working on C# 2.0 Windows Forms with an MVC Pattern in place. I have a bunch of ComboBoxes that are bound to Business Object BindingSources, i.e. Collection BO. Everything works perfectly (CRUD) but I just noticed that if the User tries to update one of the ComboBoxes by deleting its value (i.e. a value not in the collection) and tries to save, the old value is kept. The user would like no value populated. I've tried investigating _Validating, _TextChanged, and other Events to see if I could somehow set the value to "", but can't seem to see how. Has anyone resolved a similar issue?