Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working with windows form application in vb.net windows form application in that there are two buttons:

  1. Add new Textbox
  2. 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

  1. Id primary key
  2. Name

And textbox contains name.

Please suggest me the way to implement this i have no idea about this.

share|improve this question
Is the ID field auto-incremental? – Ken - Abdias Software Nov 22 '12 at 15:25
Could you use a different control other than a textbox? Maybe a datagridview which you can add rows to and expand dynamically much easier than a group of text boxes. – bendataclear Nov 22 '12 at 15:34
yes it's auto-increment. – javed salat Nov 22 '12 at 15:34
Is it posiible by datagridview??? – javed salat Nov 22 '12 at 15:35

closed as not a real question by Oded, lazyberezovsky, 0x499602D2, Marek Sebera, Graviton Nov 26 '12 at 3:44

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

In your click-event assuming the ID-field is auto-incrementing in the database:

dim myTxt as New TextBox
myTxt.Name = Me.Controls.Count.ToString '"random" name
myTxt.Location = New Point(10, 10) 'set the position according to your layout
myTxt.Tag = "For DB" 'something to identify it by
myTxt.Visible = True

Me.Controls.Add(myTxt) 'add it to form's control collection.
Me.Refresh             'If in panel etc. change Me with that control.

Then in your second click event:

... open database, do checks etc.

For each c As Control in Me.Controls
    If typeof c Is TextBox AndAlso c.Tag ="For DB" Then
        Dim txt As String = CType(c, TextBox).Text
        'insert txt into database
    End If
Next

(A data-grid can do this for you as well).

share|improve this answer
thank you so much......... – javed salat Nov 22 '12 at 15:40
Hey can u post for data-grid-view I did it but data is not inserted into database . – javed salat Nov 23 '12 at 10:16

Not the answer you're looking for? Browse other questions tagged or ask your own question.