Visual Studio .Net Compact Framework - Technical Problem

G

Guest

The problem:
We have done the FloodFill similar to extFloodFIll API in eVC++ and
UDPConnection similar to Winsock control component using C#.Net for Compact
framework.

The client application is on eVC++ 4.2.
These two methods have been exposed from a dll in .Net
We need to integrate this C#.Net dll into eVC++ application built by the
client.
We have tried using interop and making the DLL a COM Component using
RegASM.exe. It works when we call it from VC++ or vb6.0 but does not work on
the Pocket PC application written in eVC++.
 
D

Daniel Moth

You cannot call managed code (e.g. C# dll) from unmanaged code (e.g. C++)
with NETCF. A common alternative is some kind of IPC communication (i.e. two
exes rather than exe+dll)

Cheers
Daniel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top