當您移動到另一個單元格時,檢查當前行是否發生更改的正確條件是什麼?if datagridview currentcell change中的語句
我試試這個代碼:
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
的結果,但是當我移動到另一個單元格時如果我在列1但我移動到列2但不同的行然後結果是changed
我希望你明白我的意思!
謝謝你的工作! – 2013-04-05 07:09:31