I'd cloned a recordset with the following sentence:
the problem is that RcsCloned.AbsolutePosition is not updated while debug.
For instance in a Do while sentence although the code execute the MoveNext method, the AbsolutePosition is always 1 an the field values are belong to the row 1.
Why this behavior in a cloned recordset ?
Code:
Set RcsCloned = RcsSource.Clone
Dim lFound As Boolean
Dim sIdValue As String
sIdValue="1"
lFound=False
RcsCloned.MoveFirst
Do While RcsCloned.EOF = False
If RcsCloned!Id = sIdValue Then
lFound=True
Exit Do
End If
RcsCloned.MoveNext
Loop
For instance in a Do while sentence although the code execute the MoveNext method, the AbsolutePosition is always 1 an the field values are belong to the row 1.
Why this behavior in a cloned recordset ?