Windows error 0x800401F9, -2147220999

Detailed Error Information

CO_E_ERRORINDLL[1]

MessageError in the DLL
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode4 (0x004)
NameFACILITY_ITF[2][1]
DescriptionThe source of the error code is COM/OLE Interface management.[2][1]
Error Code505 (0x01f9)

Questions

19votes
1answer

How to provide a private Side by Side manifest that correctly locates a .NET Dll as COM Provider?

I'm researching about the configuration of a private registration free WinSxS with the plain provision of assembly manifest files, to stitch Delphi executables (COM clients) and .NET (C#) COM visible DLLs together at deployment and runtime. I already studied the documentation available at MSDN "Interoperating with Unmanaged Code", the sections [...] read more
c#
.net
delphi
com
winsxs
2votes
3answers

Using a custom DirectShow filter (DLL, registered)

I've written a small transform filter (derived from TransInPlaceFilter baseclass), and managed to make it work properly in a Directshow graph, entirely coded in C++. I basically followed the 5 first steps described on MSDN, and the last part of the 6th step (in order to use the filter directly [...] read more
c++
dll
directshow
regsvr32
graphedit
1vote
1answer

Convert C++ COM class to C# for invocation by C++ executable

Apologies but this is a C++ integration with C# question from a C# person! I have a C++ EXE which invokes methods from an COM DLL which is registered as an InProcServer32 with a specific class ID. The EXE is invoked thus: EXENAME --UseClassId {CLSID} The COM DLL is built [...] read more
c#
c++
interface
com
0votes
0answers

Getting System.Runtime.InteropServices.COMException on trying to register word addin

We have a word based application. We create a Word Addin & when trying to connect the addin using the statements : Microsoft.Office.Core.COMAddIn MyAddin = null; bool bFound = false; try { foreach (Microsoft.Office.Core.COMAddIn MyAddin1 in WordApp.COMAddIns) { MyAddin = MyAddin1; if (MyAddin.Description == "My ComAddin") { MyAddin.Connect = true; [...] read more
c#
com
ms-word
comexception
office-addins
0votes
1answer

directshow video source filter: couldn't bind moniker to filter object (0x800401f9)

I compiled an (existing [1]) directshow source filter, then plugged it into VLC to use it and get this: dshow error: couldn't bind moniker to filter object (0x800401f9) dshow error: can't use device: Virtual Cam, unsupported device type compiled using visual studio 2010 express + windows SDK 7.1 any ideas [...] read more
filter
directshow

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0