使用宏调用 Excel COM Addins 函数
如何使用 Excel 宏调用 COM 插件中定义的函数? 基本上我已经创建了一个 Excel COM Addin,它可以做一些事情。 现在我想通过 Excel 宏调用它。 有可能做到吗?
或者
是否可以使用宏安装 COM Addin?
How can I call a function defined in a COM Addin using excel macro ?
Basically I have created a Excel COM Addin which does some bunch of stuff.
Now I want to invoke this via excel macros.
Is it possible to do it ?
Or
Is it possible to install COM Addin using a macro ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过转到“工具”->“VBA 编辑器”来引用 COM 库。引用(我认为),然后您可以选择(或浏览)您创建的任何 DLL。当您在那里选择它时,您可以按照通常的方式使用其中包含的功能。
您应该会看到一个可供选择的大量库列表。
当我过去进行 VBA 开发时,我通常最终会通过这种方法使用一些东西,例如 Microsoft XML 库。
You can reference COM libraries in the VBA editor by going to tools -> references (I think) then you can select (or browse for) whatever DLL you've created. When you've selected it there you can use the functions contained within in the usual way.
You should see a big list of libraries to select from.
When I've done VBA development in the past I normally end up using a few things like the Microsoft XML libraries through this method.