To display a DataGridView column as Read Only I use:
DataGridView.Columns[0].ReadOnly = true;
Is it possible to display a column as boolean checkbox type. The data is yes/no but I want them displayed as a checkbox. Something like:
DataGridView.Columns[2].CellType = Boolean;
but that doesnt work..'bool' is a 'type' but is used like a 'variable'