C
CK
I am using the following code snippet to move to a particular record on a
form when doublclicking the record in a list box:
Dim rst As DAO.Recordset
Set rst = Me.RecordsetClone
rst.FindFirst "QuoteID =" & Me.lstQuoteHistory.Value
Me.Bookmark = rst.Bookmark
When this section of the code is run, the form does not appear to have moved
to the record but appears to be sitting still at the first record in the set.
Is there another command I should issue to actually move the form to the
desired record?
form when doublclicking the record in a list box:
Dim rst As DAO.Recordset
Set rst = Me.RecordsetClone
rst.FindFirst "QuoteID =" & Me.lstQuoteHistory.Value
Me.Bookmark = rst.Bookmark
When this section of the code is run, the form does not appear to have moved
to the record but appears to be sitting still at the first record in the set.
Is there another command I should issue to actually move the form to the
desired record?