运行时错误“429”
我用VB6开发了一个库存管理软件。我已将其复制到客户的计算机上并且可以正常工作。但三天前他们格式化了系统,现在我再次复制了软件并尝试运行该应用程序。但我收到以下错误消息
运行时错误“429”: ActiveX 组件无法创建对象
请帮助我。
I have developed an inventory management software using VB6. and i have copied it on Client's machine and it was working. but 3 days before they formatted the system and now i copied the software again an i tried to run the application. but i got the following error message
Run-time error '429':
ActiveX component can't create object
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
![扫码二维码加入Web技术交流群](/public/img/jiaqun_03.jpg)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最可能的原因是 ActiveX 控件丢失或未注册/损坏,请参阅此链接。您的应用程序是否有您应该运行的安装程序?否则,如果错误上下文没有提供任何线索,您将必须查看项目依赖项并尝试猜测缺少什么。
The most likely cause is a missing or unregistered/corrupt ActiveX control, see this link. Does your application have an installation program you should have run? Otherwise you'll have to look through the project dependencies and try and guess to see what is missing if the error context doesn't give any clue.
您的应用程序是否使用任何 Office 对象?我对在 2001 年左右编写一些使用 Word 和 Excel COM 对象的 VB6 代码有一个非常模糊和遥远的记忆,如果该应用程序安装在未安装 Office 的用户 PC 上,则会出现 429 错误。 ..
Does your app use any Office objects? I have a very dim and distant memory of writing some VB6 code back in 2001 or so that used Word and Excel COM objects, and that would spit a 429 if the app was installed on a users' PC who didn't have Office installed...