954,136 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

datagrid cell edit event

anyone knows what event can I fire when I edit the contents of a datagrid cell ?

claudiu_is
Light Poster
40 posts since Jul 2007
Reputation Points: 10
Solved Threads: 1
 

There is a whole lot of events beginning with Cell.. like

private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
        {
            MessageBox.Show("I have been changed");
        }

        private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
        {
            MessageBox.Show("I am being changed");
        }
yagiD
Light Poster
35 posts since Dec 2007
Reputation Points: 11
Solved Threads: 7
 

I`m using .NET 2k3 so, I can`t use DataGridView

claudiu_is
Light Poster
40 posts since Jul 2007
Reputation Points: 10
Solved Threads: 1
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You