首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

跟非方法存在二义性

2012-12-22 
和非方法存在二义性//关闭WordDoc文档对象WordDoc.Close(ref Nothing, ref Nothing, ref Nothing)//关闭W

和非方法存在二义性

                //关闭WordDoc文档对象 
                WordDoc.Close(ref Nothing, ref Nothing, ref Nothing);
                //关闭WordApp组件对象 
                WordApp.Quit(ref Nothing, ref Nothing, ref Nothing);

.Close() 和.Quit() 提示我方法 word.Document.Close(ref object,ref object,ref object) 和非方法 word.DocumentEvent.Close 之间存在二义性。将使用方法组。
      怎么办捏? 求救啊!!!
[解决办法]
不会吧,帮你顶顶先............
[解决办法]
因为编译器不知道close这个方法到底是Microsoft.Office.Interop.Word._Document
还是Microsoft.Office.Interop.Word.DocumentEvents2_Event的方法

解决方法:调用时详细指明你是要具体调用那个对象,如:
Microsoft.Office.Interop.Word.DocumentEvents2_Event.Close()

热点排行