Apologies in advance if this sounds slow-witted, but I didn't find it here.
Need to populate some textboxes on a form. While I could hard code it (the
number of options aren't that high), it would be more compact/efficient to
use a loop.
However, I haven't found anything that describes how to reference the
textboxes sequentially ... evaluating the hard part of the textbox name,
with the number of the loop iteration, to address the specific box.
E.G. textboxes named textbox1, textbox2, textbox3
For x = 1 to 3
{textbox(x)} = x
Next x
What I need is how to call out the part of the line {in braces} so that it
executes dynamically. In the stupid example, t-box 1 would have 1, t-box 2
2, t-box 3 3.
I really don't want to get into arrays here, would be killing an ant with a
cannon, and more learning curve to overcome ... even though my example looks
like array notation
Thanks in advance for help with a real rookie question, but I don't write
much code ... as should be painfully obvious from the question.
Kevin