| Author: rajnava 17 Mar 2008 | Member Level: Gold | Rating: Points: 2 |
hai pradeep DataGridViewCheckBoxCell oCell; foreach (DataGridViewRow row in dataGridView1.Rows) { oCell = row.Cells[0] as DataGridViewCheckBoxCell; bool bChecked = (null != oCell && null != oCell.Value && true == (bool)oCell.Value); if (true == bChecked) { //add records }
send status by raj
|