适用于 Excel 2007 和 2010 的 Excel 插件

发布于 2024-10-16 15:04:36 字数 298 浏览 3 评论 0原文

我正在编写一个可以在 2007 和 2010 中运行的 Excel 插件。当我使用 Visual Studio 创建新项目时,我需要决定我想要哪个版本。我之前选择了2007,但由于我安装了2010,所以无法调试它。我收到错误:

您无法调试或运行此项目, 因为所需的版本 Microsoft Office 应用程序不是 已安装。

据我了解,如果我的目标是 2007 年,我应该能够在 2007 年和 2010 年上运行它。这是正确的吗?如果是这样的话,我可以使用2010来调试它吗?

I'm writing an Excel Addin that should work in both 2007 and 2010. When I create a new project with Visual Studio I need to decide which version I want. I've chosen 2007 before, but since I have 2010 installed I can't debug it. I get an error:

You cannot debug or run this project,
because the required version of the
Microsft Office application is not
installed.

It is my understanding that if I target 2007 I should be able to run it on both 2007 and 2010. Is that correct? If that's so, can I debug it using 2010?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

空名 2024-10-23 15:04:36

共享外接程序是由 Visual Studio 项目创建的,该项目创建了一个实现 IDTExtensibility2 接口的 Com 外接程序。这使您可以访问 Excel 模型(工作簿、工作表、范围……)。
这种项目至今仍是最像 C# XLA 的项目。它们通常用于部署给外部客户的正式商业开发。虽然它们更难以制作和维护,但它们确实可以让您对外接程序进行更深入的控制,并且可以在某种程度上与版本无关(也就是说,您可以使用自己的 IA 而不是特定的 Office PIA 库,和/或可以在后期绑定中执行更多操作来处理多个 Office 版本,同时降低兼容性问题的风险)。

此处:http://metasharp.net/index.php?title=Csharp_and_Excel_Interoperability

A shared Add-in is made from a Visual Studio project creating a Com Add-In implementing the IDTExtensibility2 interface. This grants you access to the Excel model (workbooks, worksheets, Range, ...).
This kind of project is still today what looks the most like a C# XLA. They are often used for formal commercial development deployed to external clients. While they are more difficult to make and maintain, they do give you deeper control over the Add-in and can be made somewhat version-agnostic (that is, you can use your own IA instead of a specific Office PIA library, and/or can do more in late binding to handle multiple Office versions with lower risks of compatibility problems).

here: http://metasharp.net/index.php?title=Csharp_and_Excel_Interoperability

西瑶 2024-10-23 15:04:36

您可以继续为 excel 2010 创建插件。在构建项目时,您将获得补丁文件以及插件。用户可以在使用 excel 2007 的系统上安装插件之前安装补丁。

You can go ahead by creating the addin for excel 2010. While you build the project you will get a patch file along with the add in. Users can install the patch before installing the add in on systems using excel 2007.

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