Jun Komoda
Jun Komoda
I think this problem is getting to the crux of `comtypes`. It relates to the mapping of `VT_...` and types in `comtypes`. For years, the community has grappled with the...
Thank you for your thorough investigation. It seems that possibly to address legacy bugs related to Windows dates, the `_com_null_date` constant is defined in `comtypes.automation`. However, it appears to be...
Thanks for sharing your thoughts. > Windows PC [1900 mode?] > Mac [1904 mode?] They are different matters from this discussion. COM objects are unique to the Windows environment. https://learn.microsoft.com/en-us/windows/win32/com/component-object-model--com--portal...
> check for any `CreateObject` call targeting any "Microsoft Application" and force the conversion from `float` to `datetime` or `None` I cannot agree with adding this implementation. COM object libraries...
Because anyone can create a COM library, theoretically, they exist in infinite numbers. For example, the method for creating a COM interface in a C++ project is published in Microsoft's...
I will explain the code for the `MailItemWrapper` dataclass that I presented. In practice, you would pass an instance of `_MailItem` to the dataclass constructor as shown below. ```py from...
Please refer to the MS documentation for information about COM and GUID. https://learn.microsoft.com/en-us/windows/win32/com/com-technical-overview We can pass various objects to GetModule. Some of them are strings like `"scrrun.dll"` and `"UIAutomationCore.dll"`, and...
Is there an update on this issue?
> Based on our discussion it sounded like those options may not be possible, ideal, or are simply naive. In this case, it has been determined that a special branch...
Please include the traceback output when an error occurs. Knowing which line the error occurred on is important for the community to assist with bug resolution. In COM object method...