I have to dynamically edit properties of a textbox in VB.NET. Except I have many rows of this textbox and it's IDs are similar to "tbox_1", "tbox_2", etc..
This is what I want to do:
(i = a normal looping integer)
Eval("tbox_" & i & ".Text = " & Parameter.value)
Since VB.NET doesn't have...