Am puzzled. I can't get an errorless sync between combo boxes on the same record.
tblManufacturers has a 1-to-M relationship with tblModels.
say, ABC Manufacturing has 3 models: red, blue, and green
XYZ Manufacturing has 3 models: XYZ1, XYZ2, XYZ3
DD Manufacturing has 3 models: DD1, DD2, DD3
So, I have a subform for the MainOrderForm. The subform has 2 combo boxes: cboManufacturer and cboModel. I have attempted to run a requery on cboModel in varying ways including running Me.cboModel.Requery on the AfterUpdate Event in the cboManufacturer combo box. If I have successfully entered the first record on the subform (say ABC/red) and I enter a 2nd record, selecting DD, the Requery runs but cboModel on the first record re-sets to Null. I had Me.cboModel = Null as a line of code before the Requery but I've commented it out.
????
tblManufacturers has a 1-to-M relationship with tblModels.
say, ABC Manufacturing has 3 models: red, blue, and green
XYZ Manufacturing has 3 models: XYZ1, XYZ2, XYZ3
DD Manufacturing has 3 models: DD1, DD2, DD3
So, I have a subform for the MainOrderForm. The subform has 2 combo boxes: cboManufacturer and cboModel. I have attempted to run a requery on cboModel in varying ways including running Me.cboModel.Requery on the AfterUpdate Event in the cboManufacturer combo box. If I have successfully entered the first record on the subform (say ABC/red) and I enter a 2nd record, selecting DD, the Requery runs but cboModel on the first record re-sets to Null. I had Me.cboModel = Null as a line of code before the Requery but I've commented it out.
????