you have to ask this question in
vb.net sessions
but for your question you can add controls at run time using
for example to form :
For i = 0 To 4
textArr(i) = New TextBox()
textArr(i).Text = "TextNo" & CStr(i)
textArr(i).Top = i * 30 + 10
textArr(i).Left = 10
textArr(i).Width = 100
Me.Controls.Add(textArr(i))
textArr(i).Show()
Next
Ahmed Ali
Software Developer