March 19, 2026
2:33 p.m.
When assigning an object (VT_DISPATCH) to a property, Wine looks for Property Set. If only Property Let is defined, fall back to using it with the object's default value. This allows code that uses Property Let with object arguments (which extracts the default value) to work when Property Set is not defined. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53844 -- v2: vbscript: Pass VT_DISPATCH as-is to Property Let without extracting default value. https://gitlab.winehq.org/wine/wine/-/merge_requests/10373