如何从 DLL 获取 XLL?

发布于 2024-12-29 08:44:29 字数 417 浏览 2 评论 0原文

任何人都可以给我一些链接或解释我如何从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

森林散布 2025-01-05 08:44:29

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.

心房敞 2025-01-05 08:44:29

这真的很微不足道。只需重命名您的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文