Hi
i have a checkboxcolumn in a datagridview, once i check one of the checkboxes in that column, how do i make that other checked boxes to be unchecked?
i was doing sothing as below
foreach (DataGridViewRow row in dgvEmerContact.Rows)
{
if(!string.IsNullOrEmpty(row.Cells[0].Value.ToString()))
dgvEmerContact.Rows[0].Cells[0].Value = bool.Parse(dgvEmerContact.Rows[r].Cells[0].Value.ToString());
}
didn't work
appreciate a reply,
thanks