It would help you get a helpful answer if you provided...
Excel version?
Where the code is located?
Where the textboxes are located
What kind of textboxes are they (or how you created them)?
What is the problem?
What is the question?
--
Jim Cone
Portland, Oregon USA
http://www.contextures.com/excel-sort-addin.html
(30 different ways to sort in excel)
"Gordon" <(E-Mail Removed)>
wrote in message
news:43951ff8-339b-485c-a77b-(E-Mail Removed)...
> 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
>