Ich habe ein Add-In für Microsoft Office Word erstellt. Es gibt kein Problem mit dem Add-In, wenn Word als Administrator ausgeführt wird, aber wenn es nicht als Administrator ausgeführt wird, gibt es zwei häufige Ausnahmen beim Zugriff auf Ribbon-Elemente.Fehler beim Zugriff auf COM-Komponenten
Die erste Ausnahme:
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)
Dieser Fehler tritt auf, wenn die Steuerung durch den folgenden Code für ungültig erklärt wird:
ribbon.InvalidateControl("control-id");
und die zweite Ausnahme:
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()
Dieser Fehler tritt auf in der letzten Zeile des folgenden Codes:
Wie kann ich dieses Problem beheben?
Funktioniert es auf anderen Computern? Ich brach die Registrierung neulich (auf einem Computer des Mitarbeiters nicht weniger) und hatte Probleme, die ähnlich zu diesem alle Programme sind, die COM-Bestandteile benutzten. Wenn es auf einem anderen Computer funktioniert, erkläre ich, was ich getan habe, um es zu beheben. – Wug
Ja, funktioniert im Entwicklungscomputer. Nur in der Testmaschine funktioniert nicht. Vielleicht, weil ich viele Versionen von Office (2007, 2007-64, 2010, 2010-64) – Victor
Oh liebe installiere (und unistalliere). Nun, mit welchem Betriebssystem läuft die Testmaschine? – Wug