Kiwi-Wombat
Registered User.
- Local time
- Today, 05:28
- Joined
- Aug 2, 2004
- Messages
- 56
In a listbox (DisplayResults) when a user selects an item you can use code to find that item e.g.
--------------------------------------
Set rs = Me.RecordsetClone
rs.FindFirst "[WordsID] = " & Str(Me![DisplayResults])
Me.Bookmark = rs.Bookmark
---------------------------------------
However if I select the item in code like DisplayResults.Selected(0) = True
and then use the code above, DisplayResults is Null
What is the correct way to tackle this one?
--------------------------------------
Set rs = Me.RecordsetClone
rs.FindFirst "[WordsID] = " & Str(Me![DisplayResults])
Me.Bookmark = rs.Bookmark
---------------------------------------
However if I select the item in code like DisplayResults.Selected(0) = True
and then use the code above, DisplayResults is Null
What is the correct way to tackle this one?