(E-Mail Removed) wrote:
> Using VS 2005.
>
> I have an app that has a DataGridView control. This control has two
> columns, the first column is a standard TextBox, and the second column
> is a CheckBox.
>
> I am having difficulty determining the state of the CheckBox, whether
> it is checked or not. I have identified an event that fires when the
> user clicks in the checkbox, CellClick. In that event handler I
> declare a local variable of the DataGridViewCheckBoxCell type and set
> it to the cell that fired the event with a statement like this:
[...]
According to the docs
(
http://msdn2.microsoft.com/en-us/lib...ckboxcell.aspx)
the value will be either True or False when in simple on/off (binary) mode.
Chris.