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