使用vb.net在datagridview中复制值

时间:2016-02-21 13:39:44

标签: vb.net indexing datagridview duplicates

我需要使用vb.net在datagridview列(例如:itemcode)中搜索重复的条目,然后我想检索其行索引,以便我可以组合这些条目。 我的代码只能检查是否存在重复,但是我需要知道索引。

Style

1 个答案:

答案 0 :(得分:0)

For i As Integer = 0 To Me.DataGridView1.RowCount - 1
    For j As Integer = 0 To Me.DataGridView1.RowCount - 1
        If i <> j Then
            If DataGridView1.Rows(i).Cells("column_name").Value =   DataGridView1.Rows(j).Cells("column_name").Value then
DataGridView1.Rows(i).DefaultCellStyle.BackColor = Color.Red
            end if
        end if
    next
next