what you need to do is place some code in the on_change event of the combo box. Although there are other ways I believe this is the easiest, assuming that you are working with a data bound form. Simply update the form's filter property in the on_change event of the combo box. If that makes sense do it, otherwise follow the steps below:
1. With the form in design view double click on the combo box.
2. Go to the event tab.
3. Select Event Procedure from the drop down box of the on change category.
4. Click the button with the three dots (next to the box that says [event procedure])
5. In between the sub end sub marks place the following code
-
me.filter = "country= " & comboxname.value
-
me.filteron = true
-
If country isn't what the query or table field is named, then use whatever the name is in the data source. if it is more than one word surround with square brackets.