6
Answers

DataGridViewCheckBoxColumn, allow only one check in entire column

Kiran Karale

Kiran Karale

13y
14.1k
1
Hi,

I have a DataGridViewCheckBoxColumn and I am trying not to allow more than one checked boxes in the column. So after one is checked, when user tries to check another one, i want to prevent that and not have more than one checked box in entire column.

Please help.
Answers (6)
2
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 13y
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
Mayur  Gujrathi

Mayur Gujrathi

NA 4.3k 725.6k 13y
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
Kiran Karale

Kiran Karale

NA 381 170.6k 13y
i Want Code in C# Windows Application
0
Kiran Karale

Kiran Karale

NA 381 170.6k 13y


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
Crish

Crish

NA 3.7k 76.4k 13y
0
Mayur  Gujrathi

Mayur Gujrathi

NA 4.3k 725.6k 13y
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