Get value of checkbox in a datagrid view

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

Guest

How do I get the value of a checkbox in a row in a datagrid view please? I
have tried many methods and nothing workds. This was so much easier in VB
6.0.

THanks for any help you can give me.
 
Try code like:

bool b = (bool)
this.dataGridView1[boolColIndex, someRowIndex].Value;

=============
Clay Burch
Syncfusion, Inc.
 
Back
Top