There are something about types i don't understand. When i declare a type
type mytype
end type
then i can create new instances:
collection1.type = new mytype
collection2.type = new mytype
Althought there are two different collections, when i iterate using for ... each, i think i iterate through all the mytype objects, never mind where they are...
If this is true, how to have two separate collections of my type to iterate through???
Thanks...
type mytype
end type
then i can create new instances:
collection1.type = new mytype
collection2.type = new mytype
Althought there are two different collections, when i iterate using for ... each, i think i iterate through all the mytype objects, never mind where they are...
If this is true, how to have two separate collections of my type to iterate through???
Thanks...