Link to home
Start Free TrialLog in
Avatar of Lucky3664
Lucky3664

asked on

Calling CellEndEdit Event of DataGridView

I am triying to call CellEndEdit Event programmatically for example when I say
DataGridView1.Rows[3].Cells[3].Value = "4" in code the CellEndEdit should work because
I try to get (sender as DataGridView).Columns[(sender as DataGridView).CurrentCell.ColumnIndex].Name; and also some works in that event.
So How can I do that?
thaks..
ASKER CERTIFIED SOLUTION
Avatar of Anurag Thakur
Anurag Thakur
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial