So,
I have a series of boxes names string0, string1, string2, etc.
I'm trying to assign values in a loop and I wanted to refer to them as string(cnt) and that doesn't work in VBA. Is there a proper syntax for this in VBA, or do I just need to go back to Perl?
So, yeah this doesn't work. Am I missing something?
xhonzi
I have a series of boxes names string0, string1, string2, etc.
I'm trying to assign values in a loop and I wanted to refer to them as string(cnt) and that doesn't work in VBA. Is there a proper syntax for this in VBA, or do I just need to go back to Perl?
Code:
for cnt = 0 to 10
me.string(cnt).value = cnt
next
So, yeah this doesn't work. Am I missing something?
xhonzi