Hi,
> I have a .Net class which is registered with COM with a GUID and this class
> is registered in a component category. In another .net app, I want to loop
[quoted text clipped - 6 lines]
> Thanks for any help!
> -sorpor
In registry under HKCR/CLSID get the GUID of the class. Then in
HKCR/CLSID/{your guid}/InprocServer32/Assembly is the the full name of
the assembly. And if you have registered it with /codebase, in CodeBase
key will be the full path to it.
Sunny
sorpor - 16 Oct 2004 00:01 GMT
Duh, I was wrong on System.Type.GetTypeFromCLSID. It will return a .Net type
if it is a CLISD pointing to a .Net component, not always System.__COM type
as I mentioned in the first post. I can easily retrieve the assembly from
System.Type then.
> Hi,
>
[quoted text clipped - 15 lines]
>
> Sunny