Word Document Close之间存在二义性解决方案

简介:

警告1  
方法“Microsoft.Office.Interop.Word._Document.Close(ref object, ref object, ref object)”和非方法“Microsoft.Office.Interop.Word.DocumentEvents2_Event.Close”之间存在二义性。将使用方法组。  

部分程序:  
Word.Document doc = null;  
.  
.  
.  
if (doc != null)  
{  
doc.Close(ref missing, ref missing, ref missing);//警告行  
doc = null;  
}

解决方案:
Word._Document doc = null;  



本文转自94cool博客园博客,原文链接:http://www.cnblogs.com/94cool/archive/2011/03/24/1994401.html,如需转载请自行联系原作者
相关文章
|
6月前
Appium使用UiSelector封装文本定位方法find_element_by_text
Appium使用UiSelector封装文本定位方法find_element_by_text
81 1
|
数据安全/隐私保护
thymleaf th:text 和 th:utext 之间的区别
1 th:text属性 可对表达式或变量求值,并将结果显示在其被包含的 html 标签体内替换原有html文本 文本连接:用“+”符号,若是变量表达式也可以用“|”符号 e.g. 若home.welcome=Welcome to our fantastic grocery store! 用解析结果为:   Welcome to our fantastic grocery store!   2 th:utext属性 解决方案 即可。
1692 0
|
5月前
|
JavaScript 前端开发 测试技术
document.write()方法总结
document.write()方法总结
|
存储
封装读取Document temp一句代码搞定
封装读取Document temp一句代码搞定
47 0
avformat_close_input分析
avformat_close_input分析
113 0
avformat_close_input分析
|
前端开发
HTML之图像数据base64、object file之间的相互转换
HTML之图像数据base64、object file之间的相互转换
重构——29以数据类取代记录(Replace Record with Data Class)
以数据类取代记录(Replace Record with Data Class):你需要面对传统编程环境中的记录结构;为该记录创建一个“哑”数据对象
1560 0
|
算法
Word Sequence To Document Distances 实践与优化
    近几年来word2vec 在自然语言与机器学习方向上已经有巨大突破,将word表示成向量已经是自然语言处理中常见的方法。本文前部分介绍的是word2vec或者其他word embedding方法处理文本后计算两个文本相似程度的算法,算法思路来自论文《From Word Embeddings To Document Distances》,如果没有读过这篇论文也没有关系,后
2635 0