I have a DataGridView that has columns with a value type of boolean.
To load the DataGridView, I load values into a DataTable then set
What value can I use in the table to load an intermediate check state?
Would it be better to use a check box control with a value than to use a column set to the boolean data type?
The check box is for display only, and will not need to be changed.
To load the DataGridView, I load values into a DataTable then set
Code:
theDataGridView.DataSource = theTable
Would it be better to use a check box control with a value than to use a column set to the boolean data type?
The check box is for display only, and will not need to be changed.
Comment