B
Brett
I need an object/structure such as an array but each item within the array
is a complex structure. For example, I have 5 items, say:
A thru E. The number of items may change. Each item has certain
properties. Such as:
A.p1
A.p2
A.p3
.......
E.p1
E.p2
E.p3
I'll assign values, via a loop, to what ever structure will hold these
complex types. For example:
For i = 0 To structure.count 'where count is 5
structure(i).p1 = something
structure(i).p2 = something
structure(i).p3 = something
Next
What type of structure will I need for the above?
Thanks,
Brett
is a complex structure. For example, I have 5 items, say:
A thru E. The number of items may change. Each item has certain
properties. Such as:
A.p1
A.p2
A.p3
.......
E.p1
E.p2
E.p3
I'll assign values, via a loop, to what ever structure will hold these
complex types. For example:
For i = 0 To structure.count 'where count is 5
structure(i).p1 = something
structure(i).p2 = something
structure(i).p3 = something
Next
What type of structure will I need for the above?
Thanks,
Brett