Here it is, lets say I have a bunch of activeX controls, all with the same name only a number (1 through 20) on the end. For example: ActiveXControl1, ActiveXControl2, ActiveXControl3, ....., ActiveXControl19, ActiveXControl20. Now what I want to do is loop through each object using a for loop or something along those lines. I know I can't do:
for i =0 to 20
ActiveXControl & i.someMethod (someArg)
next i
What can I do? If anything....
:confused:
