C
charles
using recordsets to access table data in VBA. This worked
great wen my tables were in the same database... now I
have them seperated...and the tables are linked to my APP
database.
but now none of the recordset tools work. My code is
below:
Dim rsParam As DAO.Recordset
Dim dbs As DAO.Database
Dim result As Integer
Set dbs = CurrentDb
Set rsParam = CurrentDb.OpenRecordset("tblParameter")
With rsParam
.Index = "PrimaryKey"
i get the error:
3251 operation is not supported.
what do i need to do to be able to search through my
tables that are linked?
thanks, in advance.
great wen my tables were in the same database... now I
have them seperated...and the tables are linked to my APP
database.
but now none of the recordset tools work. My code is
below:
Dim rsParam As DAO.Recordset
Dim dbs As DAO.Database
Dim result As Integer
Set dbs = CurrentDb
Set rsParam = CurrentDb.OpenRecordset("tblParameter")
With rsParam
.Index = "PrimaryKey"
i get the error:
3251 operation is not supported.
what do i need to do to be able to search through my
tables that are linked?
thanks, in advance.