当您移动到另一个单元格时,检查当前行的正确条件是什么。
我试试这段代码:
Private Sub Legal_RecordsDataGridView_CurrentCellChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Legal_RecordsDataGridView.CurrentCellChanged
if Legal_RecordsDataGridView.CurrentRow.Index = Legal_RecordsDataGridView.CurrentCellAddress.Y then
msgbox("changed")
else
msgbox("no")
endif
End Sub
我总是得到“否”的结果,因为它们总是具有相同的索引。
当我移动到另一个单元格时,如何检查CurrentRow
索引是否相同,例如当我移动到另一个单元格但我想要结果的同一行no
但当我移动到另一个单元格时,就像我在column1 但我移到 column2 但不同的行然后结果是changed
我希望你明白我的意思!