Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Excel 插件是用 C++ 编写的,但我没有源代码。
我可以在 Excel 电子表格上使用它的功能;我可以在 C# 中做同样的事情吗?
解决了:
谢谢大家,它通过以下代码工作:
excelFile = new Excel.Application(); //Set XLL path excelFile.RegisterXLL("XLL Path");
您的 XLL 是托管代码还是非托管代码?
据我所知,非托管 C++ XLL 文件实际上是一个导出 Excel 调用的特定方法的 DLL。
如果您的 XLL 有一个 .def 文件,也许您可以添加其他团队将调用的方法。