I have a form with two combo boxes that are populated from separate tables. The form uses those combo boxes to create a junction table. I would like an entry in one combo box when updated to repopulate the combo box in the second with an appropriate subset of choices from its corrsponding table.
For example, suppose I have first names in tblFirst, last names in tblLast, and full names (the junction) in tblFull. I use frmFull to populate tblFull. frmFull has two combo boxes that are populated from tblFirst and tblLast when it opens. I would like to be able to enter a first name in its combo box and when I shift focus have the combo box for last name populate only with last names that correspond to that first name in tblFull.