How do I add the event? On default after adding the datagrid to the form, it didnt have the rowsadded event. Then I added this in
private void dataGridView1_RowsAdded(object sender, DataGridViewCellEventArgs e)
{
MessageBox.Show("Row added", "Error!");
}
Which was able to run, and when I was adding data to the grid, this didn't trigger. Am I missing a step?