I am looking for a โtypicalโ way to navigate MSDN to get the COM class to do what it wants.
Example problem: I'm looking for an API method to unlock a local file (remove the internet zone / web file label from the file programmatically).
I found one post on stackoverflow.com which talked about clsid_persistentzoneidentifier. so I searched on MSDN and got to http://msdn.microsoft.com/en-us/library/ms537029(VS.85).aspx . What I'm looking for is what he does after they get to this url. From this location, I cannot figure out what the sequence of operations should be. How to connect this IZoneIdentifier to IPersistFile? etc. There must be something basic that I skip over the documentation related to COM. MSDN has interfaces and objects, but nothing helps me visualize the "sequence" diagram. None of this will let me know which COM objects belong to the same class. therefore, there may / or should be QueryInterfaced, adn, which should be CoCreated.
Durga
source share