detroitpickles
MIS
Anybody know of a VB way to grab values from textboxes in a for...next loop?
Example...
You got (3) text boxes named Text1, Text2, and Text3 whose value is in this example 10, 20, & 30 respectfully, so
For x = 1 to 3
y = Text(x).Value 'something like this
Print y
Next x
Need the print-out to be (values)
10
20
30
NOT (Strings)
"Text1.value"
"Text2.value"
"Text3.value"
TIA
Mr. Pickles
Example...
You got (3) text boxes named Text1, Text2, and Text3 whose value is in this example 10, 20, & 30 respectfully, so
For x = 1 to 3
y = Text(x).Value 'something like this
Print y
Next x
Need the print-out to be (values)
10
20
30
NOT (Strings)
"Text1.value"
"Text2.value"
"Text3.value"
TIA
Mr. Pickles