Need to close a database opened by activex.dll

TheWizardofInt

Well-known member
Joined
Dec 31, 1969
Messages
333
Location
Orlando, FL
I am opening a table with a .dll, then closing it, then opening it with ADO.Net

The .dll, it seems, doesnt close the table all the way. It has a kill object method but that leaves the tables in the database open somehow.

I have no choice but to open the table the first time with the .dll

ADO.Net, when it attempts to open the table, throws the exception Unexpected(0x8000FFFF), which I have traced down to a conflicting threads error, which tends to make a lot of sense, seeing as this is an ActiveX.dll

Anyone know how to manually force the .dll closed. THe only solution right now is to reboot the machine.
 
I am working with dBaseIV tables which are accessed through Borland by the .dll, then through ADO.Net.

Reading from the tables works until they are accessed by the .dll
 
Back
Top