I use button for by clicking it to delete one row in the DataGridView. This is the code:
DataGridView.Rows.RemoveAt(DataGridView.CurrentCell.RowIndex);
I use xml file as the source of dataset which is sourcedata of the DataGridView. It makes problems when I delete last row. What can I do?
pls, help