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,如需转载请自行联系原作者
相关文章
Layui 内置方法 - layer.close(关闭特定层)
Layui 内置方法 - layer.close(关闭特定层)
388 0
|
6月前
Appium使用UiSelector封装文本定位方法find_element_by_text
Appium使用UiSelector封装文本定位方法find_element_by_text
78 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属性 解决方案 即可。
1689 0
|
5月前
|
JavaScript 前端开发 测试技术
document.write()方法总结
document.write()方法总结
|
5月前
|
索引
foreach、for in和for of之间区别?
foreach、for in和for of之间区别?
189 0
|
6月前
|
JavaScript 前端开发 索引
foreach、for in 和for of之间的区别
foreach、for in 和for of之间的区别
52 6
|
6月前
Appium文本定位方法实现find_element_by_text
Appium文本定位方法实现find_element_by_text
61 0
|
存储
封装读取Document temp一句代码搞定
封装读取Document temp一句代码搞定
46 0
avformat_close_input分析
avformat_close_input分析
112 0
avformat_close_input分析
|
数据可视化 定位技术 数据格式
Eccharts加载geojson环形GeometryCollection格式的解决方案:Cannot read property ‘length‘ of undefined
Eccharts加载geojson环形GeometryCollection格式的解决方案:Cannot read property ‘length‘ of undefined
207 0