Hi, I've searching for a solution for this for the past few days, but to no avail.
I program in VB.net in an Insurance company. I have a program that I've created for this company,it was created on and for 32bit comps but recently I got a new comp with vista 64.
I found solutions for all the other compatibility problems except for adodb.dll.
At design time I can access all of its functions/methods and so on but when I go to run my program it crashes
on any reference to the above dll.
Dim rs As New ADODB.Recordset
The above line gives the following error
Retrieving the COM class factory for component with CLSID {00000535-0000-0010-8000-00AA006D2EA4} failed due to the following error: 8007007e The specified module could not be found. (Exception from HRESULT: 0x8007007E)
The main reason I'm using adodb is so I can export large amounts of data to excel using
xlSheet.Range("A" & xlrow).CopyFromRecordset(rs)
Does anybody know how to fix this problem?
Thanks,
Ger