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

I have some serious problem with DataGridView input validation. And a lot of times I prefer to take data from users through TextBox and only show them in DataGridView.

TextBox is easy to validate and its easy to generate user friendly messages if user input wrong values into it.

I work on a project with Entity FrameWork and I bound a DataGridView to a database.

If user make a decision to insert a data in a none null-able column and after that he make a decision to leave that column blank, when he try to click on other DataGridView cells an exception happens and you get run-time error.

Or if user try to insert a string value in an integer column he get a very long error message which is not user friendly at all.

Is it any easy way to validate DataGridView cells? If you have to use nested loops to validate DataGridView I prefer to use old fashioned way with textboxes.

share|improve this question

1 Answer

I believe you are looking for DataGridView.DataError event. you should handle this event if you want to have custom validation on data. something like this:

    private void Form1_Load(object sender, EventArgs e)
    {
        dataGridView1.DataSource = entities;
        dataGridView1.DataError += new DataGridViewDataErrorEventHandler(dataGridView1_DataError);
    }

    void dataGridView1_DataError(object sender, DataGridViewDataErrorEventArgs e)
    {
        // you can obtain current editing value like this:
        string value = null;
        var ctl = dataGridView1.EditingControl as DataGridViewTextBoxEditingControl;

        if (ctl != null)
            value = ctl.Text;

        // you can obtain the current commited value
        object current = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
        string message;
        switch (e.ColumnIndex)
        {
            case 0:
                // bound to integer field
                message = "the value should be a number";
                break;
            case 1:
                // bound to date time field
                message = "the value should be in date time format yyyy/MM/dd hh:mm:ss";
                break;
            // other columns
            default:
                message = "Invalid data";
                break;
        }

        MessageBox.Show(message);
    }

you can check the value of entered data and show appropriate error message for that value. for example if value is null or empty and the field is not nullable, you can show a message indicating that the value cannot be empty.

hope this helps.

share|improve this answer
Thank you, it dont work when you bound DataGridView to Entity FrameWork – masoud keshavarz Aug 13 '12 at 14:12
@masoudkeshavarz I've tested with entity framework 4.0, it works for me. I think your situation is different, can you explain exactly what you are doing, like how do you provide the data source for gridview, which column type do you change at runtime that doesn't enter DataError event. – Ashkan Aug 13 '12 at 17:15
Thank you for reply. Ive tried to handle this exception with DataError before. But when you work with Entity FrameWork DataError event never occur. When you leave a field with null value an exception occur from somewhere else with following message: "This property cannot be set to a null value". I provided Data Source with following steps. I made an edmx file. I dragged my tables into it. I clicked on Add New Data Source in Data Source tab and I choose d data provide from Object. Then I bound my DataGridView to it. – masoud keshavarz Aug 14 '12 at 6:58

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.