I have multiple instances of a Usercontrol on a form. How do I select the one to put data in when using a nested loop to generate the data. or is there another way to generate the data to allow individual access?
Printable View
I have multiple instances of a Usercontrol on a form. How do I select the one to put data in when using a nested loop to generate the data. or is there another way to generate the data to allow individual access?
trying using a control array and index them based on the counter variable, i.e.
for x = 0 to whatever
cntl(x).prop
next