I Goggled "how to refresh combobox in access" & I found this code:
Private Sub Category_DblClick(Cancel As Integer)
'Open code table
DoCmd.OpenForm "CategoryCodes", acNormal, , , , acDialog
Form_Suppliers!Category.Requery
End Sub
So. I implented this code into my Form. My Combo Box is a list of 4-CostomerID & how many Vehicles purchased (including those custmoers who have yet to purchased a vehicle). When I assign a customer to a vehicle in my Combo Box I want to see how many 'Vehicles' per customer after i imput a customer on my Forrm. To avoid having to hit Refressh & going to Record 1 there is a way i can Refresh/Requery my Combo Box unon going to the next Record, Right?
For 'Table' I used the Forms' name?
Here's the code I tried, but doesn't work
Private Sub Combo53_DblClick(Cancel As Integer)
'Open code Vehicles SUMS_Customers
DoCmd.OpenForm "Combo53", acNormal, , , , acDialog
Form_Vehicles SUMS_Customers!Combo53.Requery
End Sub