hi guys..i have a bound datagridview..and i wrote that code to trigger when the cell content is changed
private void datagridview1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
MessageBox.Show("Content Has Changed");
}
but it is fired 7 or 8 times when the form is loaded and it is fired again whenever i choose a row..what is wrong here? and what else event i can handle to know the cell content has changed ?