Let's say I have 3 textboxes, textbox 1, textbox 2 and textbox 3
Is there a way to setup a for loop to loop thru those 3 and copy each's text value to a List of the same number?
Say in Visual Basic, something like
For x = 1 to 3
MYArray(x) = Textbox(x).Text
Next x
I thought at first that was what Any Textbox was, with the component as the number, but I was wrong.
Thank you.