https://bugs.winehq.org/show_bug.cgi?id=53844 francisdb <francisdb(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |francisdb(a)gmail.com --- Comment #1 from francisdb <francisdb(a)gmail.com> --- Minimal reproducer and workaround below. Class EmptyClass End Class Class Test private prop Public Property Let Object(aInput) : Set prop = aInput : End Property End Class dim T : Set T = New Test dim EC : Set EC = New EmptyClass T.Object = EC Above code yields a VBSE_OLE_NO_PROP_OR_METHOD A workaround seems to be to replace the Let by Set and use Set on the assignment. Class EmptyClass End Class Class Test private prop Public Property Set Object(aInput) : Set prop = aInput : End Property End Class dim T : Set T = New Test dim EC : Set EC = New EmptyClass Set T.Object = EC -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.