Jun Komoda
Jun Komoda
@jaraco I have confirmed that the main maintainers of this project have no objections to migrating the documentation to ReadTheDocs. Feel free to apply the ReadTheDocs settings to this project.
@mwoodpatrick Does this mean "The combination of `comtypes` and Word is currently not available, probably due to a Windows Update"? Is your script still unworkable?
@RoyLarson Is this still a problem? Subclasses of `IUnknown` and `IDispatch` defined in `comtypes.gen` cannot be instantiated like normal Python objects. Perhaps this is how it should be this. ```py...
This is similar to #89 in that finding a library with the appropriate bit is not always possible. I don't think that one of them is `duplicated`, thus rather that...
@vasily-v-ryabov OK. I will re-open this issue with the goal of "raise an error that is more user friendly than the `Class not registered` error". If `CreateObject` or `GetModule` is...
> I could actually fix this problem by changing this line of code: > > https://github.com/enthought/comtypes/blob/master/comtypes/__init__.py#L659 > > into this: > > ``` > if len(outargs) == 1 and not...
@cfarrow @orf This issue has not been in motion for years. Time has passed since this issue was submitted, and with contributions to improve the test, including #267, #271 and...
Changing the implementation of `__iter__` would have large impacts. Besides, if the COM object has a `_NewEnum`, the `Iterator` implementation should be based on it. > As far as I...
Since I thought that the problem had been resolved, I closed the issue.
After reading this comment, I came across this issue. https://github.com/pywinauto/pywinauto/blob/bf7f789d01b7c66ccd0c213db0a029da7e588c9e/pywinauto/controls/uia_controls.py#L826-L834 I have re-created the following module to define the `IUIAutomationRegistrar`: `uiaregistrar` module ```py # I think this should be located...