如何查找 dll 的可用函数/属性
我想使用 2-3 个 dll 中的函数/属性。我找不到有关安装它们的软件的相关详细信息。
您能否告诉我如何找到这些详细信息?我正在使用 Excel VBA 来使用这些 dll。
I want to use functions/properties from 2-3 dlls. I could not find relevant details on the software because of which they get installed.
Could you please let me know how can i find these details? I am using Excel VBA to use these dlls.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您要将 DLL 的引用添加到 VBA 项目中,则可以使用“对象浏览器”(F2),选择您添加的 DLL,然后将显示方法/类/属性。幸运的话,您的 DLL 将有完整的文档记录 - 并且易于使用。
参考值
If you're adding a reference to a DLL into your VBA project, you can use 'Object Browser' (F2), select the DLL you added and the methods / classes / properties will be shown. With luck, your DLLs will be well documented - and easy to use.
Rgds
我假设这些是 COM DLL。在这种情况下,您需要的是 OLE-COM 对象查看器,作为最新 Windows SDK。
I assume those are COM DLLs. In that case what you need is OLE-COM Object Viewer, available as part of whatever is the latest Windows SDK.