A family of Microsoft relational database management systems designed for ease of use.
I do have another issue with this though. Now if I make a selection and then change the selection. My second Combo box still shows the data from the previous selection. Is there a fix for this?
In the AfterUpdate event procedure of the first combo box, in addition to requerying the second combo box you should also assign a Null to its Value property. Note also that, if the combo boxes are being used to enter data into a table via a form, where the two controls represent a fixed hierarchy, only the second control should be bound to a column in the table. As this functionally determines the value in the first, to bind the first control to a column in the table would introduce redundancy, and the table would not be Normalized to Third Normal Form (3NF), with the consequent risk of update anomalies.
For an example take a look at DatabaseBasics.zip in my public databases folder at:
https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
In this little demo file the section on 'entering data via a form/subforms' includes a contacts form in with three correlated combo boxes are used for entering a country, region and city. Of these only the last is bound.