I have two combo boxes in a form that contains a sub-form. First Combo box filters the part number list via customer name and then you select a part number to select the record on the main form.
the form is not requering after the part number is updated. if I open the form in design view and then go back to form view and reselect the part number the requery will work.
this is the after update code:
Private Sub cmbSelectCustomer_AfterUpdate()
Me.cmbSelectPartnumber.Value = Null
Me.cmbSelectPartnumber.Requery
End Sub
Private Sub cmbSelectPartnumber_AfterUpdate()
Me.Requery
End Sub
I will need to trim down the data base to get it to zip and upload.
thanks for any help you can provide.
Jason