非托管 C++ 中的 XLL Excel 插件
我在非托管 C++ 中进行了一些数学模拟,现在我需要将它们与 Excel 集成(以便可以从 Excel 调用函数并取回值)。我不想使用任何 VBA,所以我想我必须实现 XLL 插件。我想使用尽可能少的第三方附加框架。有人能给我指点一个好的教程吗?
I have a few mathematical simulations in unmanaged C++ and now I need to integrate them with Excel (so that it is possible to call the functions from Excel and get the values back). I don't want to use any VBA, so I guess I have to implement an XLL addin. I would like to use as few third party additional frameworks as possible. Could someone point me to a good tutorial?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
开始使用 SDK 可能会有点不愉快。
我建议您尝试以下工具包之一:
当然,对于托管代码,或者要制作从 .NET UDF 调用非托管 C++ 代码的 C# 包装器,您可以使用 Excel-DNA (http://exceldna.codeplex.com)。
Starting out with the SDK can be a bit unpleasant.
I'd suggest you try one of the toolkits:
Of course for managed code, or to make a C# wrapper that calls your unmanaged C++ code from .NET UDFs, you'd use Excel-DNA (http://exceldna.codeplex.com).