My database works fine on my computer. When I copied it over to a co-workers computer it gives me this ASP.TLB error. Says that his copy of the database is missing a reference to the file 'ASP.TLB' version 2.0
- His computer as well as mine have the same references installed. I used no special reference libraries when making this .mdb
- Neither of us have Visual Studio installed on our computers.
- There are no web pages connected to this .mdb nor either of our computers.
There are several connections in my .mdb to a single Oracle database in the building as well as connections to tables within the .mdb file - such as:
...., but that's it. Works fine on my computer, but not his.
The funny thing is that it errors out when trying to run some code that deletes all records from one of the tables before populating it again with data from Oracle, such as:
Any one get this before?
- His computer as well as mine have the same references installed. I used no special reference libraries when making this .mdb
- Neither of us have Visual Studio installed on our computers.
- There are no web pages connected to this .mdb nor either of our computers.
There are several connections in my .mdb to a single Oracle database in the building as well as connections to tables within the .mdb file - such as:
Code:
Dim cn2 As New ADODB.Connection
Set cn2 = CurrentProject.Connection
...., but that's it. Works fine on my computer, but not his.
The funny thing is that it errors out when trying to run some code that deletes all records from one of the tables before populating it again with data from Oracle, such as:
Code:
Dim cn1 As ADODB.Connection
Dim cn2 As New ADODB.Connection
Set cn2 = CurrentProject.Connection
purge2 = "delete * from [tblAll]"
cn2.Execute purge2
cn2.Close
Any one get this before?