Hi All,
I am populating a datagrid from database. Some of the columns in table have Y/N values (varchar(1) ). Instead of displaying Y/N values in datagrid..I want to display checkboxes for these. I am using typed dataset to populate the datagrid. Any suggestions are welcomed.
thx

display checkbox in datagrid for database cols with Y/N values
xudeutsch
For the DataGridView you can use a DataGridViewCheckBoxColumn and set the TrueValue and FalseValue to "Y" and "N".
-mark
DataGridView Program Manager
Microsoft
This post is provided "as-is"