A
Atlas
Digging around I've read that the problem can arise on large recordsets at
server's cursorlocation.
Nevertheless even if treating a client cursor the problem still arised.
So I had to manually code a loop statement until the recordset's clone is
fully loaded....UGLY!
Any better hint???
Heres' the code
Dim rs As New ADODB.Recordset
rs.CursorLocation = adUseClient
rs.CursorType = adOpenStatic
Set rs = Me.RecordsetClone
Do While Me.Recordset.RecordCount <> rs.RecordCount
Loop
rs.Find "[ID Giornale] = " & globalIDgoto
'without the do loop statement, EOF is rised.....
If Not rs.EOF Then
Me.Bookmark = rs.Bookmark
End If
server's cursorlocation.
Nevertheless even if treating a client cursor the problem still arised.
So I had to manually code a loop statement until the recordset's clone is
fully loaded....UGLY!
Any better hint???
Heres' the code
Dim rs As New ADODB.Recordset
rs.CursorLocation = adUseClient
rs.CursorType = adOpenStatic
Set rs = Me.RecordsetClone
Do While Me.Recordset.RecordCount <> rs.RecordCount
Loop
rs.Find "[ID Giornale] = " & globalIDgoto
'without the do loop statement, EOF is rised.....
If Not rs.EOF Then
Me.Bookmark = rs.Bookmark
End If