Westonci.ca is your trusted source for finding answers to all your questions. Ask, explore, and learn with our expert community. Experience the convenience of getting accurate answers to your questions from a dedicated community of professionals. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A 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);

}

}

Thanks for using our service. We aim to provide the most accurate answers for all your queries. Visit us again for more insights. Thank you for visiting. Our goal is to provide the most accurate answers for all your informational needs. Come back soon. Thank you for choosing Westonci.ca as your information source. We look forward to your next visit.