When trying to open a recordset in Access VBA we get the error:
"-2147024769 Automation error The specified procedure could not be found"
This only occurs on one PC where upto 30 other PCs work fine with the same code.
I think it is something to do with the MDAC installation but re-installing does not seem to fix it.
Our code is:
Dim rst As ADODB.Recordset
Set rst = New ADODB.Recordset
rst.Open "dbo_Table1", CurrentProject.Connection,
adOpenKeyset, adLockOptimistic, adCmdTableDirect
It fails on the "Set rst".
Any suggestions welcome
"-2147024769 Automation error The specified procedure could not be found"
This only occurs on one PC where upto 30 other PCs work fine with the same code.
I think it is something to do with the MDAC installation but re-installing does not seem to fix it.
Our code is:
Dim rst As ADODB.Recordset
Set rst = New ADODB.Recordset
rst.Open "dbo_Table1", CurrentProject.Connection,
adOpenKeyset, adLockOptimistic, adCmdTableDirect
It fails on the "Set rst".
Any suggestions welcome