gpt4 book ai didi

c# - Microsoft.Office.Interop.Word 命名空间覆盖我的系统命名空间? C# ASP.net

转载 作者:行者123 更新时间:2023-12-04 02:16:15 25 4
gpt4 key购买 nike

我正在尝试使用 Microsoft Office Interops 版本 11、.NET 2.0 修复这个使用 Visual Studio 2003 创建的遗留应用程序。我正在尝试在 Visual Studio Express 2010 中修复它以引用 Interops 版本 14、.NET 4.0——正如我在之前关于 StackOverflow 的问题中所述,旧版应用程序在 Windows 7 中运行良好,但在我关闭它之后,Microsoft Office 产品是当我尝试使用它们时崩溃。

但是,当我修复 VS2010 中的引用(删除旧的 v.11 Interops,添加新的 v.14 Interops)然后尝试发布应用程序时,我收到如下错误

'Microsoft.Office.Interop.Word.System does not contain a definition for IO'

当引用 Word 命名空间时,VS2010 似乎没有看到我的系统命名空间被使用?当我删除

using Microsoft.Office.Interop.Word

命名空间,然后尝试发布,上面的错误消失了,我只得到与丢失的 Word 引用相关的预期错误,如

The type or namespace name '_Document' could not be found (are you missing a using directive or an assembly reference?)

我已经在引用中包含了 System.dll,所以我不确定发生了什么?感谢阅读!

编辑:对于 Office 互操作,我将“嵌入式互操作类型”设置为 False。这可能已经修复了一些错误?但是:Visual Studio 仍在将任何系统引用解释为“Microsoft.Office.Interop.Word.System”,这不是我想要的。这个错误现在似乎是主要错误:

The type name 'Windows' does not exist in the type 'Microsoft.Office.Interop.Word.System'

最佳答案

这个问题发生在我身上,只有当我像这样在命名空间定义之后放置 using 时:

namespace Addin
{
using Microsoft.Office.Core;
using Microsoft.Office.Interop.Word;
using Microsoft.Win32;
using System;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Net;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows.Forms;
..........................

正确的方法是:

using Microsoft.Office.Core;
using Microsoft.Office.Interop.Word;
using Microsoft.Win32;
using System;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Net;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace Addin
{
....................

希望对你有帮助!

关于c# - Microsoft.Office.Interop.Word 命名空间覆盖我的系统命名空间? C# ASP.net,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11476549/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com