F
friend
hi all,
I am filling the datagridview from the text boxes.
that means i enter the values in the text boxes, by clicking a button
all the values in the text boxes get stored in datagridview.
so my gridview is a below
1 2 3
4 5 6
......
if i want to delete the selected row from the datagridview i am trying
in the following way...
For Each row1 As DataGridViewRow In Me.DataGridView1.SelectedRows
Me.DataGridView1.Rows.RemoveAt(row1.Index)
Next
but it doesnt work....it is giving an error relates to the
ibindungslist.
I am filling the datagridview from the text boxes.
that means i enter the values in the text boxes, by clicking a button
all the values in the text boxes get stored in datagridview.
so my gridview is a below
1 2 3
4 5 6
......
if i want to delete the selected row from the datagridview i am trying
in the following way...
For Each row1 As DataGridViewRow In Me.DataGridView1.SelectedRows
Me.DataGridView1.Rows.RemoveAt(row1.Index)
Next
but it doesnt work....it is giving an error relates to the
ibindungslist.