calls to an object COM + from c# for compact framework

  • Thread starter Thread starter Agustin Naranjo
  • Start date Start date
A

Agustin Naranjo

Hello

As to do calls to an object COM + from c# for compact framework. Up to now
me it imported all the libreria COM+ to an Interface with its repective
"Coclass" but I do not find a createInstance or something seemed, there is
some another form.

The ideal thing is that it there was something as the "tlbimp" that if it
there is it in framework.

help me?
 
There isn't currently any COM support built into the compact framework,
although there will be in the upcoming v2.0 due next year. The only method
currently available is to write a native code dll which consumes the com
component and exposes static c functions for all of the methods and
properties. You can then call into this from your .NETCF code using Platform
Invoke.

Peter
 
Back
Top