Issue with Linked Table

S

Steve Haack

Can someone tell me why the followig works if the tblPlayers is local, but
not when it is linked?

dim db as DAO.Recordset
dim rst as DAO.Recordset
set db=CurrentDb
set rst=db.OpenRecordset("tblPlayers")
rst.Index="PlayerID"
....

If tblPlayers is local, no issues. When I split the database to front
end/back end, then the code will stop at the "rst.Index" statement and I get
a 3251 Runtime Error: "operation is not supported for this type of object"

Thanks,
Steve
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top