Is there a way to reference all members of a control array at one time without looping through them individually?
For example, if you had 100 members in the array and you wanted to change the height of all of them, is there something equivalent to:
myControl(ALL).height = 50
rather than
for x = 0 to 49
myControl(x).height = 50
next x