投稿者 shu  (社会人) 投稿日時 2011/11/28 15:03:21
片方を選択したらもう片方を非選択状態にする。

例えば、こんな感じ
        For Each cell In DataGridView1.SelectedCells.OfType(Of DataGridViewCell)()
            cell.Selected = False
        Next