com
-
HI, Say I have a MFC application. On InitInstance or InitDialog I want to check if there is any COM server(registered) that belongs to the application.(I don't know any CLSID)Is it possible to do that. If so then I wan't to add an item in the menu for each com server I find.
-
HI, Say I have a MFC application. On InitInstance or InitDialog I want to check if there is any COM server(registered) that belongs to the application.(I don't know any CLSID)Is it possible to do that. If so then I wan't to add an item in the menu for each com server I find.
Hi, Information about registered COM objects is stored in the registry. You can try the CLSIDFromProgID function to check if specified ProgID is registered. You can also create an instance of the object and then release it, to be 100% sure that all pieces in place. Regards, Alex Gorev, Dundas Software.