我有大約10(DatagridView計數可能會根據用戶從2到10選定的文件而不同)Datagridview,那麼我如何從所有Datagridviews中找到共同的價值?從Datagridview查找公共值
評論如果您需要更多的簡短詳情
下面是我的,但它找到共同從2個-2 datagridviews
For i As Integer = 1 To dgvCont
For j As Integer = 0 To Main.DGVM(i).Rows.Count - 1
For Each Val As DataGridViewRow In Main.DGVM(i + 1).Rows
If Val.Cells(0).Value = Main.DGVM(i).Rows.Item(j).Cells(0).Value Then
Dim cm As String = Val.Cells(0).Value
If cm = "" Then
Else
Analysis.lvCmn.Items.Add(Val.Cells(0).Value)
End If
End If
Next
Next
Next
分享您的代碼 – SK2185
@SenthilKumar檢查現在 –
是否使用多個datagridview的 – SK2185