Find the best answers to your questions at Westonci.ca, where experts and enthusiasts provide accurate, reliable information. Explore a wealth of knowledge from professionals across different disciplines on our comprehensive platform. Get quick and reliable solutions to your questions from a community of experienced experts on our platform.

Write steps to Delete data from ‘Datagridview’

Sagot :

Explanation:

private void btnDelete_Click(object sender, EventArgs e)

{

if (this.dataGridView1.SelectedRows.Count > 0)

{

dataGridView1.Rows.RemoveAt(this.dataGridView1.SelectedRows[0].Index);

}

}