VB6动态添加DLL引用
我目前正在制作一个具有多个引用 DLL 的应用程序,并且我正在尝试在运行时添加这些引用。我怎样才能在vb6中实现这一点?
请帮助我解决我的问题并分享代码或链接以供参考。我非常欣赏。谢谢!
I am currently making a application that has several reference DLL and i am trying to add these references on runtime. how can i make this posible in vb6?
Please help me with my problem and share me code or link for reference. i highly appreciate it. thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可能是错的,但只要注册了 dll (regsvr32),您就应该能够使用 CreateObject("Class Identifier") 方法从中加载类
I might be wrong, but as long as the dll is registered (regsvr32), you should be able to load classes from it using the CreateObject("Class Identifier") method