Posts by Wesley Silva • 11 points
1 post
-
1
votes2
answers756
viewsA: Checkbox in Datagridview C#
This code scans a gridview and mark/enable the state of checkbox Use this example to solve your problem : DataGridView dgv = new DataGridView(); for (int i = 0; i < dgv.RowCount; i++) {…