Using the for next loop of vbscript I want to choose a textbox on the form. Example I have 3 textboxes each named textbox1 textbox2 textbox3 I want to assign values to each textbox using the for x =1 to 3 for the number and textbox as the value the following example is not correct but shows what I am looking to do
for x = 1 to 3
textbox & x = x
next
what is the proper syntax for this operation
for x = 1 to 3
textbox & x = x
next
what is the proper syntax for this operation