I have 4 drop down combo boxes in my form. The other three update when the first one is changed erasing the value in the field. The problem am having is... when the user click on the dropdown list, if instead of clicking the arrow again to close the dropdown list they click the same value that is currently in the field, it sees this as a change and erases the values in the other boxes. I've messed around with this in On Change as well as After Update. Is there a way to do this so if the user clicks on the dropdown and clicks on the name that was already in the field to begin with it doesn't see this as a change and doesn't erase the other values? Here's my code"
Code:
Private Sub Departments_Change()
Me.pTrainer = Null
Me.pTrainer.Requery
Me.pTrainer = Me.pTrainer.ItemData(-1)
Me.Strings = Null
Me.Strings.Requery
Me.Strings = Me.Strings.ItemData(-1)
Me.STrainer = Null
Me.STrainer.Requery
Me.STrainer = Me.STrainer.ItemData(-1)
End Sub