I am trying to move web servers. Our application (be kind) was written in 1998 (I think) in VB6. It works for me on our new server (Windows Server 2008 R2 64 bit). However, when I take the source code on my machine (Windows 7 64 bit) and transfer exe to the server, the application explodes when it tries to connect to the database with this error: "Error 430 (the class does not support Automation or does not support the expected interface)
The project refers to the Microsoft ActiveX Data Objects 2.8 Library. Line in which errors
Set conn = New adodb.Connection
Thus, it does not actually try to connect to the database, but simply explodes when trying to create an object.
Does anyone have experience with such a mistake? Or any suggestions for me? Google had several options, but none of them came out. Most of them were related to Common Controls and using "project compatibility", but my application works with "Automatic execution", so I can not select this (it is completely disabled in the project properties.)
source share