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 7873157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T02:25:53+00:00 2026-06-03T02:25:53+00:00

I have a For Each loop written in Visual Basic that’s trying to modify

  • 0

I have a For Each loop written in Visual Basic that’s trying to modify a table it is iterating through. This is causing the “”Collection was modified; enumeration operation might not execute” exception.

What is frastrating about this is that I’ve tried to make copies of all the objects that I was using and and only removed from the copy but the exception still happened.

I know that this is due to my using a For Each loop instead of a For or While loop but I could not rewrite my code and make it work (I’m more familiar with C#). This is why I decided to ask for help here.

This is my code. How can I rewrite to be able to remove the Row that I wish to remove? Any help and code would be very appreciated!

Dim drAcademicRecord, drSchool As DataRow
For Each drSchool In dsR.Tables("School").Rows
    If drSchool("OrganizationName") = "NA" Then
        For Each drAcademicRecord In dsR.Tables("AcademicRecord").Rows
            If drAcademicRecord("AcademicRecord_Id") = drSchool("AcademicRecord_Id") Then
                dsR.Tables("AcademicRecord").Rows.Remove(drAcademicRecord)  '<-- This is the line causing my exception
            End If
        Next
    End If
Next
  • 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-06-03T02:25:55+00:00Added an answer on June 3, 2026 at 2:25 am

    You don’t need to use

    dsR.Tables("AcademicRecord").Rows.Remove(drAcademicRecord)
    

    Because you have already got drAcademicRecord, so you can directly delete that row by

    drAcademicRecord.Delete
    

    e.g.

    For Each drSchool As DataRow In dsR.Tables("School").Select("OrganizationName='NA'")
        For Each drAcademicRecord As DataRow In dsR.Tables("AcademicRecord").Select("AcademicRecord_Id=" & drSchool("AcademicRecord_Id"))
            drAcademicRecord.Delete
        Next
    Next
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a loop that can look like this: For Each article In artAll
I have this loop // go through each alumni foreach (esDL.Alumni currAlumni in allAlumnis)
I have a for each loop like this $sn_count = 1; $prodfilter = ;
I have a page which displays my database information. Through each loop, there is
I have loop and each iteration of Hash looks like this: [1, {:clid=>1, :nvz=>4,
I have a listbox and I want to loop through each of the items
I have a loop created with each, check this example: $('.foo').each(function(i){ //do stuff });
I have a foreach loop in jQuery going through each 'div.panel', I need to
I have a query and a loop written that lists all the rows from
I have a very simple each loop written in Ruby : params[:category].each do |i|

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.