How to get IID from ClsID
COM
2
Posts
2
Posters
0
Views
1
Watching
-
I have a clsid of a com component now i want to know its interface identifier. How can i do it. Thanx in advance Regards INAM Inam
A CLSID is a GUID that references a coclass; whereas an IID is a GUID that references an interface in the coclass. I'm not sure I understand what you're really wanting becuse a coclass can support more than one interface - which means there will be more than one IID. Are you sure you're not wanting the ProgID? if so you can use: CLSIDFromProgID or ProgIDFromCLSID Regards,