Is it possible to use .Net component in COM component without registering it(.Net component ) in registery??
Regards
NadeemAhmad Wednesday, September 20, 2006 9:19 AM
If it's not in the GAC or Registry, then there's likely no way for the .NET Framework to tell where the DLL is. In fact, EVERY COM component needs to be registered to work, since it uses the GUID in the registry to find it.
Read this article and the related ones to find out what you can and can't do.
NadeemAhmad Thursday, September 21, 2006 7:56 AM
Side-by-side COM doesn't need any registration for a COM component to be called. This uses manifest files and requires a minimum of XP SP1 or Server 2003. Look at articles relating to registration free COM .