I created a C# dll in vs 2010 with all Com+ attributes.i created a strong key,and
this strong key to Application properties
and register it to the assembly:
sn -k ComPlusClass.snk
Use VS tool to register the assembly as:
regasm ComPlusExample.DLL
Create a Type Library using the tool:
` tlbexp ComPlusExample.DLL
Register it in COM+ as:
regsvcs ComPlusExample.DLL
later i created a application in vb6 and add generated .tlb in refrences.Everthing works fine. I am able to call c# dll from vb6. But i need to give this code to my client and it is not possible to run all these steps there.
So for this i created exe by right click my app in COM+.i installed this exe on my client system.but when i added the refrence of tlb from progmramfiles it shows a error that module can't be found.plz help me in this regard.Is creating exe is the right way to export my com+ from one system to another..