As I understand it, there is no COM support in the compact framework...
A big bummer is that we get no COM interoperability, which means the
compact CLR doesn't include the COM marshaler from .NET that is able to
translate inbound and outbound calls between .NET objects and COM
objects. Windows CE does support COM and this limitation of .NETcf
makes it difficult for your mobile code to "talk" to mobile COM
libraries, such as the Pocket Outlook Object Model (POOM). COM Interop
was omitted because of size and mobile resource considerations. It was
important to keep the size of the mobile CLR down and COM Interop was
simply too expensive. Your only way out of a .NETcf application domain
is Platform Invoke (P/Invoke), which enables you to call Win32 DLLs in
Windows CE, whether they are native or third party in nature. COM
objects would then have to be "wrapped" using a native message-based
DLL built with eVC++. This native wrapper would make all the COM
interactions and your .NET application would talk to the wrapper
through P/Invoke. Interoperability and COM Interop in .NETcf is too big
a topic for the scope of this article, so I'll come back to it in a
future issue. Also, note that there is no support in .NETcf for writing
a COM object.
http://www.devx.com/codemag/Article/17441/0/page/6
Chris