darkstar257
Registered User.
- Local time
- Today, 09:57
- Joined
- Jan 6, 2011
- Messages
- 77
Thanks for all the tips.
I have another issue once I split the database that seems odd.
In my coding for some forms I open a recordset for a TABLE and use dbOpenTable since it's a table.
Once I split into a front end and backend, the form operations now give me a "Invalid Operation" error on the recordset lines. I changed them to "dbOpenDynaset" instead and now it works. But I thought dbOpenDynaset was only for queries and such. How has a split database could've affected this?
I have another issue once I split the database that seems odd.
In my coding for some forms I open a recordset for a TABLE and use dbOpenTable since it's a table.
Code:
Set db = CurrentDb()
' Set rst = db.OpenRecordset("Item_Line", dbOpenTable) 'dbOpenTable
Set rst = db.OpenRecordset("Item_Line", dbOpenDynaset) 'dbOpenDynaset
Once I split into a front end and backend, the form operations now give me a "Invalid Operation" error on the recordset lines. I changed them to "dbOpenDynaset" instead and now it works. But I thought dbOpenDynaset was only for queries and such. How has a split database could've affected this?