DataGridView and CheckBoxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I access the value of a checkbox in a DataGridView? It's an unbound
column. Thanks.
 
Try something like this:

If dgvYourDataGrid.Rows(<RowIndex>).Cells(<colName>).Value.ToString = "0"
then



Fill in appropriate values for the stuff inside the < >
 
Back
Top