ListBox

  • Thread starter Thread starter Shell
  • Start date Start date
Forms![NameOfForm]!NameOfListbox].Selected(EntryNumber) = True

EntryNumber starts at 0
 
I used the following code

For i = 0 To Me.lstBox.ListCount - 1
If Me.lstBox.ItemData(i) = rst!Date1REC Then
Me.lstBox.Selected(i) = True
Exit For
End If
Next i

The problem no is that ALL controls on the form are not responding to a
click event.
 
Back
Top