B
Brad
I have 3 combo boxes on a form that cascade. I set this up by using the
following code in the after update section of the preceding combo box.
cboRow.RowSource = "SELECT DISTINCT tblSeatType.Row " & _
"FROM tblSeatType " & _
"WHERE tblSeatType.Model = '" & cboModel.Value & "' " & _
"ORDER BY tblSeatType.Row;"
My question is if I select an option from the 1st and 2nd combo boxes, the
values will be available for the 3rd combo box; but if I went back and
changed my selection in the 1st combo box without changing the 2nd combo box,
the values in the 3rd combo box would not be changed. How can I resolve this
to update the 3rd combo box anytime either of the first 2 combo boxes are
changed?
following code in the after update section of the preceding combo box.
cboRow.RowSource = "SELECT DISTINCT tblSeatType.Row " & _
"FROM tblSeatType " & _
"WHERE tblSeatType.Model = '" & cboModel.Value & "' " & _
"ORDER BY tblSeatType.Row;"
My question is if I select an option from the 1st and 2nd combo boxes, the
values will be available for the 3rd combo box; but if I went back and
changed my selection in the 1st combo box without changing the 2nd combo box,
the values in the 3rd combo box would not be changed. How can I resolve this
to update the 3rd combo box anytime either of the first 2 combo boxes are
changed?