convert a string into a textbox name

  • Thread starter Thread starter Gordon
  • Start date Start date
G

Gordon

Trying to loop to load different textbox
Textbox1, Textbox2, Textbox3 ect

n = 1
xCt = 15
xText = 35
Do while xCt > 0
Textbox(n) = xText
n = n + 1
xCt = xCt - 1
xText = xText + 3
Loop
 
Back
Top