https://bugs.winehq.org/show_bug.cgi?id=53844
francisdb francisdb@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |francisdb@gmail.com
--- Comment #1 from francisdb francisdb@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