i'm using this code to auto add textboxes inside the userform
Dim i As IntegerFor i = 1 To Sheets("sheet8").Range("a10000").End(xlUp).Row
Set tBox = Controls.Add("forms.textbox.1")
With tBox
.Name = "textbox" & i
.Left = 20
.Height = 20
.Top = i * 20
.Width = 160
.Font.Size = 12
Me("textbox"...