T
Tim Ricard
Good afternoon,
I am trying to clone a recordset that has a filter and sort property
(DAO here, not ADO):
rs.Filter = "Quantity <=" & lngQuantity
rs.Sort = "Cost DESC, Primary"
I want the filtered values from this recordset, but I also want the
bookmarks. It appears as though:
set rs2 = rs.clone
will only give me the clone of the original recordset without the
filter and sort arguments but if I simply:
set rs = rs.OpenRecordSet()
then I have no way of sharing the bookmarks... or do I?
Is there a way to share bookmarks if I know that rs2 is a subset of rs
through code?
Thanks for the help
Tim
I am trying to clone a recordset that has a filter and sort property
(DAO here, not ADO):
rs.Filter = "Quantity <=" & lngQuantity
rs.Sort = "Cost DESC, Primary"
I want the filtered values from this recordset, but I also want the
bookmarks. It appears as though:
set rs2 = rs.clone
will only give me the clone of the original recordset without the
filter and sort arguments but if I simply:
set rs = rs.OpenRecordSet()
then I have no way of sharing the bookmarks... or do I?
Is there a way to share bookmarks if I know that rs2 is a subset of rs
through code?
Thanks for the help
Tim