I have a list Box on a main form that shows lines of data related to the main form. When I select next record the Main Form changes as expected but the List Bix does not update to show the data related to record 2. I have tried using
Private Sub MyCombo_AfterUpdate()
Me.lstMyListBox.Requery
End Sub
With no success....
Private Sub MyCombo_AfterUpdate()
Me.lstMyListBox.Requery
End Sub
With no success....