我正在创建一个VSTO应用程序,用于读取和更新Word模板中的文本,并将其保存在另一个文件中。问题是我无法打开任何Word模板(.dotx)。
当我单击功能区中的按钮以触发打开的模板事件时,它只是没有给出任何错误或警告消息,它只会使Word冻结几秒钟而不返回任何内容。它不显示任何模板,只显示像创建新文档时的纯白页。
这是我的代码,请注意startuppath
变量是尝试操作路径的结果。
string startupPath = Directory.GetParent(Directory.GetCurrentDirectory()).Parent.FullName;
Debug.Print(startupPath);
startupPath = startupPath + "\\templateKoding\\leTemplateKoding.dotx";
Debug.Print("new path : "+startupPath);
Microsoft.Office.Interop.Word._Application word = new Microsoft.Office.Interop.Word.Application();
Microsoft.Office.Interop.Word.Document doc = word.Documents.Add(@"C:\Users\futtbucker\Documents\Visual Studio 2010\Projects\Koding\Koding\templateKoding\leTemplateKoding.dotx");
答案 0 :(得分:0)
打开使用word.Documents.Open