“无效的过程调用或参数” “New ADODB.Connection”错误仅当在 Windows 7 上编译时
自从我在 Windows 7 中获得了一台新的开发机器(我的旧机器在 Windows XP 上)后,当我在 VB6 上编译一些遗留应用程序时,我遇到了一些问题
。如果我在我的 XP 机器上编译该项目,一切都很好。 如果我在 Windows 7 计算机上编译相同的项目,它仍然运行良好,但如果我尝试在 XP 计算机上运行它,则会出现此错误。
错误编号:5
说明:无效的过程调用或参数
感谢我的错误处理程序,我知道引发此错误的行是:
Dim objConn As ADODB.Connection
--> Set objConn = New ADODB.Connection
我比较了两台机器上的引用,并且项目 - 引用
是相同的:(Microsoft ActiveX 数据对象 2.7 库)
什么可能导致此错误?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是已知的 Win7 SP1 中的问题 将在 SP2 中修复。
在 SP1 中处理该问题的方法是从 Win7 RTM 中复制旧的 ADO typelib 文件到
C:\Program Files (x86)\Common Files\System\ado
并在那里注册。正如许多论坛主题所表明的那样,注册这个旧的 ADO 类型库并不是一项简单的任务。这是我们在商店中用于修复 ADO typelib 问题的批处理文件:
您需要
msado28_old .tlb
和subinacl.exe
放置在与install.bat
文件和regtlibv12 的 .NET Framework 4.0 安装程序相同的文件夹中.exe
实用程序。现在,您可以在 Win7 机器上重新编译引用 ADO 的项目,而不会在以前版本的 Windows 上出现兼容性问题。
This is a known problem in SP1 for Win7 which will be fixed in SP2.
The way to handle the issue in SP1 is to copy the old ADO typelib file from Win7 RTM in
C:\Program Files (x86)\Common Files\System\ado
and register it there.Registering this old ADO typelib is not a trivial task as numerous forum threads have shown. Here is a batch file we use in our shop to fix ADO typelib issue:
You need both
msado28_old.tlb
andsubinacl.exe
placed in the same folder as theinstall.bat
file and .NET Framework 4.0 setup for theregtlibv12.exe
utility.Now you can recompile your projects referencing ADO on the Win7 box with no compatibility issues on previous versions of Windows.
这是一个已知的 Microsoft 问题,但我不认为这是一个错误;我认为出于安全原因兼容性被破坏。如果您有某些修补程序,则该问题可能存在于非 SP1 版本上已安装。 Microsoft 知识库中引用了几个选项。这是另一个文章提供更新。
我们遇到了这个问题,因此决定在所有开发人员计算机上部署向后兼容性补丁,并将所有旧版 ADO 引用替换为向后兼容性引用。这对我们来说效果很好。
This is a known Microsoft issue, but I don't think it was a bug; I believe compatibility was broken for security reasons. The problem could have existed on a non-SP1 builds if you had a certain hotfix installed. There are a couple of options referenced in the Microsoft KB. Here is another article providing an update.
We ran into this problem and we decided to deploy the Backwards Compatibility patch on all developer machines and replace all legacy ADO references with the Backwards Compatibility reference. This has worked well for us.