Creating COM api

  • Thread starter Thread starter bede
  • Start date Start date
B

bede

I have an application which I need to build a COM dll for so calls to
my exe can be made in unmanaged code.

I don't have too much of a problem making the COM part but what I do
not understand is how to get my COM methods to communicate with
my .exe methods.

Can someone point me in the right direction?
 
I have an application which I need to build a COM dll for so calls to
my exe can be made in unmanaged code.

I don't have too much of a problem making the COM part but what I do
not understand is how to get my COM methods to communicate with
my .exe methods.

Can someone point me in the right direction?

..NET Remoting? it's a pretty decent way to get interop between
two .NET processes...
 
Back
Top