Here is my code:
Private Sub Add_Click

Dim tbox As New TextBox
tbox.Location = New Point(12, 244)
tbox.Size = New Size(100, 20)
Me.Controls.Add(tbox)

End Sub

********
I added a textbox dynamically during runtime. How will I add the text in the textbox to my database? The name property of the textbox cant be change.
What is the name property of the texbox created during runtime?