Hello,
I'm try to embed a IExplorerBrowser (Windows Explorer) in a wxpython application but I cannot seem to get the IExplorerBrowser module opened in python
I have the CLSID of IExplorerBrowser from the registry but when I try and open it with:
from win32com import client
client.gencache.GetModuleForCLSID(id)
Nothing is returned.. i.e. the module does not exist.
Am I going about this the wrong way? I usually use makepy to generate COM wrappers and open them with client.Dispatch, getting the object names from the makepy generated code. However, I can not find the IExplorerBrowser object in the makepy COM browser and am pretty much stuck.
Thanks