R
Rob Wills
Hi,
I've been coding Access and ADO/DAO for a few years now, and I'm just trying
to understand what benefits are gained from using bookmarks on a recordset
I've never used them before - but I'm looking into someone's code that is
using them - But I'm pretty sure they're irrelevent in this instance....
But this leaves me with the question of WHY????
Cheers
Rob
p.s. Instance example below
=========================
For each Item in CollABC
rs.AddNew
rs!Field1.Value = Item.ABC
rs!Field2.Value = Item.XYZ
rs.Update
rs.Bookmark = rs.LastModified
next Item
=========================
I've been coding Access and ADO/DAO for a few years now, and I'm just trying
to understand what benefits are gained from using bookmarks on a recordset
I've never used them before - but I'm looking into someone's code that is
using them - But I'm pretty sure they're irrelevent in this instance....
But this leaves me with the question of WHY????
Cheers
Rob
p.s. Instance example below
=========================
For each Item in CollABC
rs.AddNew
rs!Field1.Value = Item.ABC
rs!Field2.Value = Item.XYZ
rs.Update
rs.Bookmark = rs.LastModified
next Item
=========================