Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7610585
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T01:27:12+00:00 2026-05-31T01:27:12+00:00

I have a datagridview that displays data from an XML file. The DGV is

  • 0

I have a datagridview that displays data from an XML file. The DGV is called TaskTable.
I have a checkbox in each row and a button that should delete any row that has a checkbox selected in.

However, at the moment I can only get one row to be deleted at a time when I need multiple rows to be deleted if multiple rows are selected from both the DGV and the back end XML file.

Here is the code that is successfully deleting one row at a time:

private void RemoveButton_Click_1(object sender, EventArgs e) // removes checked tasks.
    {
        int i = 0;
        {
            for (i = 0; i <= TaskTable.Rows.Count - 1; i++)
            {

                if (TaskTable.Rows[i].Cells[0].Value != null)
                {

                    if ((bool)TaskTable.Rows[i].Cells[0].Value == true)
                    {
                        if (MessageBox.Show("Are you sure you want to remove the selected task?", "Confirm Delete", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) // confirmation
                        {
                            TaskTable.Rows.RemoveAt(i); //Here If Checkbox Selected Then It Will Delete The Row From The GridView

                        }

                    }


                }
            }
        }
         TaskDataSet.WriteXml(fileURL);
         TaskDataSet.AcceptChanges(); // re writes xml file and removes deleted tasks.
    }

Please help me to amend my code, allowing me to delete multiple tasks at one time.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T01:27:13+00:00Added an answer on May 31, 2026 at 1:27 am

    The following code should work. It builds a list of rows to delete, asks for confirmation, and then deletes the selected rows.

    The deletions must be done in order of descending row index to prevent the deletions from changing the row indexes or rows that still need deleting.

    private void RemoveButton_Click_1(object sender, EventArgs e) // removes checked tasks.
    {
        List<int> rowsToRemove = new List<int>();
        int i = 0;
    
        for (i = 0; i <= TaskTable.Rows.Count - 1; i++)
        {
    
            if (TaskTable.Rows[i].Cells[0].Value != null)
            {
    
                if ((bool)TaskTable.Rows[i].Cells[0].Value == true)
                {
                    rowsToRemove.Add(i);
                }
            }
        }
    
        if (MessageBox.Show("Are you sure you want to remove the selected tasks?", "Confirm Delete", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) // confirmation
        {
            // delete rows in reverse order of row index so row indexes are preserved
            foreach (int rowIndex in rowsToRemove.OrderByDescending(x=>x))
            {
                TaskTable.Rows.RemoveAt(rowIndex); 
            }
    
    
        }
    
        TaskDataSet.WriteXml(fileURL);
        TaskDataSet.AcceptChanges(); // re writes xml file and removes deleted tasks.
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a DataGridView that displays data from a MS Access database. I'm using
I have a DataGridView with cells from a database file that contains data. Basically,
In my application I have a DataGridView control that displays data for the selected
I have a DataGridView that is bound to a list of objects called BaseChange.
I have a DataGridView that I would like all values on a specific row
Hey guys, I have an application that I want to display some data from
I have a program that displays numbers in a System.Windows.Forms.DataGridView . I'm formatting those
i have created an xml file from my c# application i want to use
I currently have a WinForms application that downloads large amounts of data from a
I have a Form in my application that displays some data. When I first

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.