我为Microsoft Office Word构建了一个加载项。当以Word管理员身份运行时,使用外接程序没有问题,但是,如果不以管理员身份运行该外接程序,则有两个常见的异常(exception)访问功能区元素。
第一个异常(exception):
Unable to cast COM object of type 'System.__ComObject' to interface type 'Microsoft.Office.Core.IRibbonUI'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{000C03A7-0000-0000-C000-000000000046}' failed due to the following error: could not be found. (Exception from HRESULT: 0x80030002 (STG_E_FILENOTFOUND)).
at Microsoft.Office.Core.IRibbonUI.InvalidateControl(String ControlID)
通过以下代码使控件无效时,将发生此错误:
ribbon.InvalidateControl("control-id");
还有第二个异常(exception):
Unable to cast COM object of type 'Microsoft.Office.Interop.Word.ApplicationClass' to interface type 'Microsoft.Office.Interop.Word._Application'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{00020970-0000-0000-C000-000000000046}' failed due to the following error: could not be found. (Exception from HRESULT: 0x80030002 (STG_E_FILENOTFOUND)).
at Microsoft.Office.Interop.Word.ApplicationClass.get_Selection()
在以下代码的最后一行上会发生此错误:
object wdStory = Word.WdUnits.wdStory;
object wdMove = Word.WdMovementType.wdMove;
WrdApp.Selection.EndKey(ref wdStory, ref wdMove)
我该如何解决这个问题?
最佳答案
问题解决了!
我之前已经安装了Office 2010,所以Windows注册表中存在一些不一致之处。
要修复它们,请打开regedit
并从错误中查找CLSID。
对于第二个错误,您将找到类似的内容:
HKEY_CLASSES_ROOT\Interface\{00020970-0000-0000-C000-000000000046}
使用子项:
看一看
(Default)
内部的Version
和TypeLib
值。现在,使用
(Default)
值作为<TypeLib ID>
来找到下面的节点。HKEY_CLASSES_ROOT\TypeLib\<TypeLib ID>\<version>
作为该元素的子元素,您将找到多个元素,其中一个是第一个注册表的
Version
。如果检查其他元素,您会发现它们没有指向任何对象。 删除其他人!!! 解决了!