1
Answer

datagridview rows

student student

student student

14y
3.9k
1
How can i add a row between other rows in a datagridview?

I have a datagridview, and i insert with the help of a second form new data on that datagrid. But the new data always adds to the last row.
I want to add them to a specific place that i want.

please help me!
Answers (1)
0
Hirendra Sisodiya

Hirendra Sisodiya

NA 8.8k 3m 14y
       Hello Student

        you can use this code
        suppose if you want to add newcolumn as third column

        Dim Col As New DataGridViewTextBoxColumn
        Col.HeaderText = "NewCol"
        DataGridView1.Columns.Insert(2, Col)


        please mark as answer if it helps
Next Recommended Forum