I can't make this work... :(
How can I implement the member as a read-write property?
Whenever I try to Set the Item as a new object, it says "object does not support this...".
Has anyone done this before, and how?
Thanks for help!
Printable View
I can't make this work... :(
How can I implement the member as a read-write property?
Whenever I try to Set the Item as a new object, it says "object does not support this...".
Has anyone done this before, and how?
Thanks for help!
Collections support add/remove, not coll.item = New ObjectCode:Dim o as Object
Dim coll as Collection
for x = 1 to 55 ' or however many you need
Set o = New MyObject
coll.Add o
next