I'm working with windows form application in vb.net windows form application in that there are two buttons:
- Add new Textbox
- Insert multiple textbox data into database
When I click on 1st button it will create new textbox and if I click on 2nd button than it should insert data of multiple textboxes in database.
Database has two fields only
- Id primary key
- Name
And textbox contains name.
Please suggest me the way to implement this i have no idea about this.
datagridviewwhich you can add rows to and expand dynamically much easier than a group of text boxes. – bendataclear Nov 22 '12 at 15:34