Gustav Brock
Gustav at cactus.dk
Wed Sep 26 10:22:50 CDT 2007
Hi Rocky
Try to hold the Recordset:
rst = Me.RecordsetClone
rst.FindFirst "PersonID = " & Me.lstShortList.Column(0)
If rst.NoMatch = False Then
Me.Bookmark = rst.Bookmark
End If
rst.Close
/gustav
>>> rockysmolin at bchacc.com 26-09-2007 17:13 >>>
Dear List:
Does anyone know why the code:
Me.RecordsetClone.FindFirst "PersonID = " & Me.lstShortList.Column(0)
Me.Bookmark = Me.RecordsetClone.Bookmark
generates an error 2001 - You Canceled the Previous Operation?
The value in Me.lstShortList.Column(0) is a valid PersonID. It happens on
the second line.
MTIA
Rocky