Does anyone know if you can use the recordsetclone method with ADO, I am just moving across from DAO and when ever I try to use this with ADO, and then use a find and use the forms bookmark to point to the RSC bookmakr it fails, while in DAO this worked fine, see example code below
dim rstADO as New ADO.Recordset
set rstado = me.recordsetclone
rstado.find "UserName = '" & me!username & "'"
me.bookmark = rtado.bookmark
dim rstADO as New ADO.Recordset
set rstado = me.recordsetclone
rstado.find "UserName = '" & me!username & "'"
me.bookmark = rtado.bookmark