Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get a checkbox value from a datagridview(True/False) but I always get a value "null", here is the code where i get the value of the checkbox:

DataGridViewCheckBoxCell boolean = (DataGridViewCheckBoxCell)dgv[e.ColumnIndex, e.RowIndex];
string checkCheckboxChecked = ((bool)boolean.FormattedValue) ? "False" : "True";

This code returns a false in the Boolean.FormattedValue even the checkbox is checked and also I tried another:

object value = dgvVisual[e.ColumnIndex, e.RowIndex].Value;

And this code return a value of null

Why does this happen?

P.S. e is an event of the CELL CONTENT CLICK.

Here is the full code of the datagridview cell content click:

private void dgvVisual_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
    int Number1= int.Parse(dgvVisual[0, e.RowIndex].Value.ToString());
    int Number2 = (e.ColumnIndex - 1);                
    DataGridViewCheckBoxCell boolean = (DataGridViewCheckBoxCell)dgvVisual[e.ColumnIndex, e.RowIndex];
    bool checkCheckboxChecked = (null != boolean && null != boolean.Value && true == (bool)boolean.Value);
    //string checkCheckboxChecked = "";
    if (checkCheckboxChecked)
    {
        //do something if the checkbox is checked
    }
    else
    {
        //do something if the checkbox isn't
    }
}

SOLVED: I changed the CELL END EDIT EVENT and add the click content to datagridview.CurrentCell to another cell.

share|improve this question
Try dgvVisual[e.ColumnIndex, e.RowIndex].Value.toString(); – DROP table users Jul 21 '12 at 2:13
NULL Reference exception if i use dgvVisual[e.ColumnIndex, e.RowIndex].Value.toString(); – Hugo Wong Jul 21 '12 at 2:16
Since you are using an eventargs which DataGridView event is this code in? – Mark Hall Jul 21 '12 at 2:23
e is an event of DatagridView CELL CONTENT CLICK – Hugo Wong Jul 21 '12 at 2:24
use the dgv_CellEndEdit event instead – Jeremy Thompson Jul 21 '12 at 2:32
show 3 more comments

2 Answers

up vote 1 down vote accepted

Its a bit odd calling the cell boolean. And then using its FormattedValue property. I added a DataGridView to a Form, added two columns Text and Checkbox. CheckBox is a DataGridViewCheckBoxColumn. Then I added a button and this should give you the idea:

private void button1_Click(object sender, EventArgs e)
{
    dgv.AutoGenerateColumns = false;
    DataTable dt = new DataTable();
    dt.Columns.Add("Text");
    dt.Columns.Add("CheckBox");
    for (int i = 0; i < 3; i++)
    {
        DataRow dr = dt.NewRow();
        dr[0] = i.ToString();
        dt.Rows.Add(dr);
    }
    dgv.DataSource = dt;            
}

private void dgv_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
    foreach (DataGridViewRow row in dgv.Rows)
    {
        var oCell = row.Cells[1] as DataGridViewCheckBoxCell;
        bool bChecked = (null != oCell && null != oCell.Value && true == (bool)oCell.Value);
    }
}
share|improve this answer
is OCELL a DataGridViewCheckBoxCell? – Hugo Wong Jul 21 '12 at 2:13
This doesn't work also, It returns a "FALSE" value even the checkbox is checked – Hugo Wong Jul 21 '12 at 2:18
Please see my edit, ta – Jeremy Thompson Jul 21 '12 at 2:28
It doesn't work for me also...is it that i blind the data from the database and i changed the Column's data property name? – Hugo Wong Jul 21 '12 at 2:40
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
    DataGridViewCheckBoxCell ch1 = new DataGridViewCheckBoxCell();
    ch1 = (DataGridViewCheckBoxCell)dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[0];

    if (ch1.Value == null)
        ch1.Value=false;
    switch (ch1.Value.ToString())
    {
        case "True":
            ch1.Value = false;
            break;
        case "False":
            ch1.Value = true;
            break;
    }
    MessageBox.Show(ch1.Value.ToString());
}

Found this here > stack seems like it might suit your purposes.

share|improve this answer
This code always return a false value...even the checkbox is checked.. – Hugo Wong Jul 21 '12 at 2:41
If you comment out `    if (ch1.Value == null)         ch1.Value=false;` lines, does it throw a null reference exception? – DROP table users Jul 21 '12 at 3:00
Yes, it throws null reference exception – Hugo Wong Jul 21 '12 at 3:25
"For clicks in a DataGridViewCheckBoxCell, this event occurs before the check box changes value, so if you do not want to calculate the expected value based on the current value, you will typically handle the DataGridView.CellValueChanged event instead.". From MSDN If you try it with the other event it might get what it needs. – DROP table users Jul 21 '12 at 3:49
I solved by changing to another event, thx for your help – Hugo Wong Jul 21 '12 at 4:35
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.