
Possible to Store Objects in Arrays?
I have several objects which I wish to store in a list
form, but every time I try to put them in an array the
de{*filter*} yells at me with an object doesnt support this
property or method.
quick example of problem
Class tester
End Class
Dim te2
set te2 = new tester
Dim myArray(2)
myArray(1) = te2
Anyone have a work around, or know what I'm doing
wrong...dont really want ot implement a list myself today