Hmm not very sure if you have already solved this problem, I encountered this problem before. If you are using DAO recordsets you might want to check dbSeeChanges argument.
set rs = db.openRecordSet("bla bla bla",dbOpendynaset,dbSeechanges)
//open a query of table of dynamic type
if you open a table normally usually it would be a static table and you wont be able to seechanges.
If you are using ADO like I currently using right now you might not encounter this problem.
|