I have about 30 text boxes of 3 different types all named using the same convention. Is there a way to reference these textbox's with a stringbuilder.
for example with the following list of textbox Id's:
txtABCdate
txtBCDdate
txtCDEdate
I need to get the text value of each text box. Looking for something like
Dim Names As String() = {"ABC", "BCD", "CDE"}
For each key in Name
'get the text for textbox (txtABCdate.text)
for example with the following list of textbox Id's:
txtABCdate
txtBCDdate
txtCDEdate
I need to get the text value of each text box. Looking for something like
Dim Names As String() = {"ABC", "BCD", "CDE"}
For each key in Name
'get the text for textbox (txtABCdate.text)