I have two combo boxes, both unbound. One serves as a filter for the other. For example, the first one lists different 'partner groups'; based on the user's selection, the second combo box is filtered to only show 'partners' that fall into that group...this is done by updating the rowsource of the second combo box after updating the first.
I would like the second combo box to display "---Select partner---" after updating the first combo box but can't get it to show anything. "---Select partner---" shows on form load, but after doing one filter and selection of the second combo box, "---Select partner---" fails to show after updating the first combo box again.
I added an AfterUpdate event to the first combo box, but it doesn't do what I'd like:
Code:
me.cmb_Partner.value = "---Select to add---"
Any ideas?