How to create a form with a button add_subjects which adds one textbox and a corresponding label on each click,3 buttons - Add, Edit and Dele
You can use the same code as above and, in the end, use the parent property of control. Because the control (TextBox, Buttom, etc.) is "inside" of a "container" (form, groupbox, etc.). Like this...
...
Dim textbox1 As New TextBox
textbox1.Name = "Textbox1" 'or other
...
textbox1.parent = Me 'Me = the form
...