This you will get if you are accessing database before you close the previous recordset. This mostly you see when you have multiple threads.
To fix this: synchronize the call to database such that you will not open two recordsets at any time on the same database or have a seperate database connection
The other thing you need to make sure of is that your table component is not "Active" in the IDE. You will ALWAYS want to explicitly open and close your tables in code and NOT through the Active property of the component in the IDE.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.