2
What you are describing is usually done using Radio Buttons except Radio Buttons also don't work like that for DataGridViews. There is an article in this web site however that shows how to do it.
0
link for converting code vb.net to c#.net
http://www.developerfusion.com/tools/convert/vb-to-csharp/
kiran my post helped you or not? isnt it fit in your scenario
0
i Want Code in C# Windows Application
0
how to enable single selection of Checkbox in datgridview.i have checkbox column in my datagridview i just want to select only one checkbox instead of selecting multiple Checkbox
0
0
Try this if worked then mark as accepted
Private CheckColIndex As Integer = 0
Private Sub DataGridView1_CellValueChanged(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellValueChanged 'Check the column index and if the check box is checked. If e.ColumnIndex = CheckColIndex Then Dim isChecked As Boolean = CType(Me.DataGridView1(e.ColumnIndex, e.RowIndex).Value, Boolean) If isChecked Then 'If check box is checked, uncheck all the rows, the current row would be checked later. For Each row As DataGridViewRow In Me.DataGridView1.Rows row.Cells(e.ColumnIndex).Value = False Next End If End If End Sub