Hi,
I currently have a form with about 20 textboxes on, labeled Textbox1, Textbox2 and so on...
I would like to know how to get the data from any one of these textboxes from an integer.
Dim text as String
text = "Textbox" & RandomInteger & ".Text"
msgbox(text)
Anytime I do this, I just get the textbox name eg, "Textbox10.Text"
I am using Visual Studio 2010,
Thanks in advance