I have an ActiveX DLL to read database connection settings from the Windows registry. It works great in VB 6, but am trying to use it in VBScript. Whenever I call a method of the DLL class, I get a Type Mismatch error.
My code looks like this:
Dim sServer, sDB, sLogin, sPW
Dim oConn
Dim oReg...