Hi ! trying to auto-select (default to) the first value of List2 after the user selects a value from List1.
Although this works:
Private Sub List1_AfterUpdate()
Me.List2.Requery
Me.List2.Selected(0) = True
End Sub
The first item stays selected and won't let the user select another item on List2 anymore ! Any ideas ?
Thanks for your help !
Although this works:
Private Sub List1_AfterUpdate()
Me.List2.Requery
Me.List2.Selected(0) = True
End Sub
The first item stays selected and won't let the user select another item on List2 anymore ! Any ideas ?
Thanks for your help !