I have 20+ text boxes that are all named like: TxtCustom1 TxtCustom2 TxtCustom3 and so on...
I want to be able to assign those text boxes values in a loop by building the text box var name dynamically with a int concatenated so that my loop would be something like this pseudo code:
For Each pair In Dictionary
TxtCustom{pair.key}.Text = pair.Value
Next
Is building names dynamically like this possible in vb.net, how would something like this be accomplished?