如何在 VB 中跨不同形式比较两个不同的DatagridView
?
我试过这段代码:
if rowThere.Cells(addFormCaller.BOMItemCode.ToString).Value.ToString.Equals(rowHere.Cells("colBOMItemCode").Value.ToString) = True _
And rowThere.Cells(1).Value.ToString.Equals(rowHere.Cells(1).Value.ToString) = True _
And rowThere.Cells(3).Value.ToString.Equals(rowHere.Cells(2).Value.ToString) = True
Then
Return True
Exit For
Else
Return False
End If
但仍然没有运气