gpt4 book ai didi

c# - 添加对 Office 库的引用失败 : type or namespace name Word not found

转载 作者:行者123 更新时间:2023-11-30 15:10:49 24 4
gpt4 key购买 nike

我正在尝试使用 sample code here :

我转到“添加引用”对话框并添加了“Microsoft Word 12 库”,但它没有出现在解决方案资源管理器中。我还添加了:using Microsoft.Office;

我在尝试声明“Word”对象时收到以下错误消息。

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

关于如何正确引用 Word 库有什么建议吗?

最佳答案

编辑:更改为不使用剪贴板

using Microsoft.Office.Interop.Word;

public string Test(string path)
{
Microsoft.Office.Interop.Word.Application wordApp = new Microsoft.Office.Interop.Word.Application();
object file = path;
object nullobj = System.Reflection.Missing.Value;

Document doc = wordApp.Documents.Open(ref file, ref nullobj, ref nullobj,
ref nullobj, ref nullobj, ref nullobj,
ref nullobj, ref nullobj, ref nullobj,
ref nullobj, ref nullobj, ref nullobj);

string result = doc.Content.Text.Trim();
doc.Close();
return result;
}

关于c# - 添加对 Office 库的引用失败 : type or namespace name Word not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2944539/

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