I know how to create textbox dynamically but the problem now is that I want it below my previous created textbox
Dim textbox1 As New TextBox
textbox1.Name = "Textbox1"
textbox1.Bounds = New Rectangle(e.Location, New Size(100, 100))
Me.Controls.Add(textbox1)