I have 30 textboxes in my form. Their names are tb1, tb2, ... tb30
I need to retrieve the values from those 30 textboxes.
How can I use a loop to address those 30 textboxes names and values? Please help.
Printable View
I have 30 textboxes in my form. Their names are tb1, tb2, ... tb30
I need to retrieve the values from those 30 textboxes.
How can I use a loop to address those 30 textboxes names and values? Please help.
You can put them into an array and access by x (ie arryTextbox(x) ).
Or use jm's code here and use the .getType and .name to find your text boxes