Question Button to add new textbox on form?

sebasjuh

Member
Joined
Dec 6, 2007
Messages
13
Programming Experience
Beginner
Hello,

I'm making an input form where a user can add a new contact by filling in 4 textboxen and 1 combobox. Now I want to make a button on the form where the user can click on so that a new line of input field appear so that a user can add another new contact. And when the user clicks on the submit button that it saves all the input fields to the SQL. (this part I can make).

I'm only want to know if you can make a button to add a new line of textboxen en comboboxen and how I can make it?

And Is this possible in Visual Studio 2005 (vb.net)?
 
Why have a submit button? Why not just have a 'Add Contact' button.
1) Person fills out information
2) Click on 'Add Contact'
3) You insert into the db
4) Clear the fields and allow them to input more contacts.
 
Back
Top