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

  • Home
  • SEARCH
  • 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 778293
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T19:44:29+00:00 2026-05-14T19:44:29+00:00

I have a MDI main form. On it I host a form, and I

  • 0

I have a MDI main form. On it I host a form, and I want it to show a message box before it closes (asking the user whether to save changes).

So far so good, however I have discovered that closing the MDI main form does not raise a MDI child FormClosing event. I figured I will just call MdiChild.Close() in the MDI main’s FormClosing event (which does get raised). This seams to work, however it does causes a problem…

In the messagebox that I show, I offer the user to save changes, not to save changes and cancel closing. Normally this works fine, however I can’t seem to find a way to cancel MDI main’s FormClosing event. Is there a elegant way of doing this?

EDIT: I solved this by throwing an exception (when user decides to cancel the closing procedure) which is caught in MDI main’s FormClosing event. In this way I know when I have to cancel the MDI main’s FormClosing event and this seams to work fine … However I just can’t believe that this “hax” is the only way of doing this. Surely there is a better way?

  • 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-14T19:44:30+00:00Added an answer on May 14, 2026 at 7:44 pm

    I figure that you cancel the close on the childform when the user votes to cancel the close?

    In that case I’d go with this Main form close

    private void Form1_FormClosing(object sender, FormClosingEventArgs e)
    {
        if (e.CloseReason == CloseReason.UserClosing)
        {
            foreach (Form frm in this.MdiChildren)
            {
                frm.Close();
            }
        }
        e.Cancel = (this.MdiChildren.Length > 0);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a main form (MainForm) and a MDI child window (TFormChild). I want
I have a MDI parent form. When user presses Enter I want the Application
I have a project with a main MDI form. There is a child MDI
I have an MDI form with a centered background image. Each time the user
I have a MDI Windows Forms application. The main form, among the other events,
I have main form which is MDI parent. Inside I opened second (same solution,
I have a main form that has 5 MDI children. When the main form
Let's say I have a main form that can open MDI children inside it.
I have a MDI form, and I want to be able to shift between
I have a MDI form. I want to check within a running child of

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.