G
Guest
Dim rstSrcC, rstSrcP, rstSrcD As Recordsets
Set dbs = CurrentDb()
Set rstSrcC = dbs.OpenRecordset("tblExportCalls_IMP") THIS WORKS
Set rstSrcP = dbs.OpenRecordset("tblExportProposals_IMP") THIS WORKS
Set rstSrcD = dbs.OpenRecordset("tblExportDeals_IMP") THIS FAILS WITH ERROR 13
I am well used to working with recordsets in code. I have checked all of the
usual suspects, the table exits etc. What on earth is causing this? I have
NEVER had this error with a recordset before. Is it possible corruption in a
system table? Where should I look for clues?
Set dbs = CurrentDb()
Set rstSrcC = dbs.OpenRecordset("tblExportCalls_IMP") THIS WORKS
Set rstSrcP = dbs.OpenRecordset("tblExportProposals_IMP") THIS WORKS
Set rstSrcD = dbs.OpenRecordset("tblExportDeals_IMP") THIS FAILS WITH ERROR 13
I am well used to working with recordsets in code. I have checked all of the
usual suspects, the table exits etc. What on earth is causing this? I have
NEVER had this error with a recordset before. Is it possible corruption in a
system table? Where should I look for clues?