DataGridViewCheckBoxColumn null/default value

J

juhimg

Hi,

I'm using a DataGridView with some checkboxes
(DataGridViewCheckBoxColumn). It seems that the check box is
initialized to null. I set the TrueValue, FalseValue, and
IndeterminateValue to the appropriate values (true/false). But I
haven't found any property that sets the null value to false. As a
result, I always get NULL if no action was done on the checkbox.
I need to do the following-
1. How can I make the NULL value of the DataGridViewCheckBoxColumn to
indicate false.
2. How can I set the default value of the checkbox - i.e. when the
grid is loaded with the checkbox, it should be checked.

Any pointers in this direction would really be appreciated!

Thanks,
Juhi.
 
C

ClayB

Is this DataGridView bound to a particular DataSource? If so, you
might try making sure the DataSource does not contain null values (or
DBNulls) in that column. For bound grids, the default behavior is to
just reflect what comes from the bound datasource.

===============
Clay Burch
Syncfusion, Inc.
 
J

juhimg

Is this DataGridView bound to a particular DataSource? If so, you
might try making sure the DataSource does not contain null values (or
DBNulls) in that column. For bound grids, the default behavior is to
just reflect what comes from the bound datasource.

===============
Clay Burch
Syncfusion, Inc.

The DataGridView is bound to a datasource. But I'm having a problem
with new rows that are added to the grid. For every new row, the
checkbox is initialized to NULL and I don't know how to make NULL be
set to FALSE.
Any thoughts on this??
Thanks much in advance!
--Juhi
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top