如何从 DLL 获取 XLL?
任何人都可以给我一些链接或解释我如何从 DLL 构建 XLL(对于 Excel)?
我无法使用 Visual C++,所以我依赖 CodeBlocks + GCC。
到目前为止我已经有了源代码并从中获得了一个DLL。 如何从 DLL 中获取 XLL?
这似乎是最后一步,但我找不到有关它的完整文档。即使在 Microsoft 网站 上也没有太多相关信息。
我想要进行此转换的分步说明...
谢谢。
平台:64 位 Windows 7、32 位 Excel 2010、CodeBlocks、MinGW/GCC
Can anybody give me some links or explain me how to build an XLL from a DLL (for Excel)?
I cannot use Visual C++, so I rely on CodeBlocks + GCC.
So far I have the source code and I obtained a DLL from it. How can I get the XLL from the DLL?
This seems to be the last step, but I cannot find complete documentation about it. Even on Microsoft web site there is not much about it.
I would like to have the step-by-step explanation to do this conversion...
Thank you.
Platform: 64 bit Windows 7, 32 bit Excel 2010, CodeBlocks, MinGW/GCC
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
xll 是具有某些众所周知的功能的 dll。当您在 Excel 中打开 xll 时,它会动态加载
int xlAutoOpen(void)
并调用它来注册您的用户定义函数。省去很多麻烦,只需使用 http://xll.codeplex.com 即可。
An xll is a dll with certain well-know functions. When you open an xll in Excel it dynamically loads
int xlAutoOpen(void)
and calls that to register your user defined functions.Save yourself a heap of trouble and just use http://xll.codeplex.com.
这真的很微不足道。只需重命名您的 DLL 即可。没错,只需更改扩展名即可。 XLL 文件只不过是重命名为表示它是 Excel 加载项的 DLL。请参阅本教程的步骤 11。
It's pretty trivial really. Simply rename your DLL. That's right, just change the extension. A XLL file is nothing else than a DLL renamed to signify it's meant to be an Excel add-in. See step 11 of this tutorial.