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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T20:02:13+00:00 2026-05-28T20:02:13+00:00

Trying to close all forms except for the main menu using FormCollection formsList =

  • 0

Trying to close all forms except for the main menu using

FormCollection formsList = Application.OpenForms;

with a foreach loop and saying,

if (thisForm.Name != "Menu") thisForm.Close();

Which works ok, it skips the menu, and closes the first, but it then errors:

Collection was modified; enumeration operation may not execute

and stops. I have tried a few places, and they all say that this foreach loop is the way to do it, and it is especially annoying as I am not updating my forms list after closing the forms, which I thought might work. The only thing I could think of was to start at the back and work forward using a while.

  • 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-28T20:02:14+00:00Added an answer on May 28, 2026 at 8:02 pm

    If you use foreach to enumerate through a collection, it can’t be modified (items added or removed) during the iteration. Try copying references to the forms to another collection, and then remove them by iterating through that collection.

    In situations like this, you can use a list or a simple array, such as:

    List<Form> openForms = new List<Form>();
    
    foreach (Form f in Application.OpenForms)
        openForms.Add(f);
    
    foreach (Form f in openForms)
    {
        if (f.Name != "Menu")
            f.Close();
    }
    

    Or you can use a for loop:

    for (int i = Application.OpenForms.Count - 1; i >= 0; i--)
    {
        if (Application.OpenForms[i].Name != "Menu")
            Application.OpenForms[i].Close();
    }
    

    Or, my new and current favorite, you can use the Reverse() method:

    foreach (Form f in Application.OpenForms.Reverse())
    {
        if (f.Name != "Menu")
            f.Close();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey all, i have a problem with trying to get 2 forms to close
I am trying to close all opened listeners using something like : GP.GlobalInfo.CommWCF.serviceClient.GetFilteredMessageCompleted -=
im using vc++ forms. i created a textbox, im trying to get the value
I am trying to close my main(the parent) form when a child form is
I am trying to create a Windows Forms Application in Visual C++ 2010. I
I'm trying to close a child window with JavaScript, and in Firefox everything works
Possible Duplicate: Cross-thread operation not valid I am trying to close the base of
When trying to call Close or Dispose on an SqlDataReader i get a timeout
i am trying to write a program that close explorer then runs another program.
I'm trying to bind the following shortcut: Ctrl + W to close tabs How

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.