I have been dealing with strange problem. I am using KryptonForm in a project. I have a form (say form1) and I need to open another form on a button click from this form. Here is the code:

void btn_click(object sender, EventArgs e)
{
    Visible = false;
    ShowInTaskbar = false;

    var f = new Form2();
    f.ShowDialog();

    Visible = true;
    ShowInTaskbar = true;
}

The problem is that when the Form2 closes it closes the Form1 also. I have tried setting DialogResult = DialogResult.None from Form2 but of no avail. Please help me.

I am always using this technique and this thing has never happened.

link|improve this question

78% accept rate
Have you stepped through this in the debugger to see what is really going on? There could be some other code being executed which you haven't included here. – Macropus Dec 5 '10 at 12:32
What happens if you comment-out the 2 first lines in this method? Does Form1 still get closed if you avoid making it invisible and hiding its TaskBar button? – Ran Dec 5 '10 at 12:33
Is the parent form (form1) actually closed, or does it only stay invisible? – stakx Dec 5 '10 at 12:47
@JD I have debugged it, @Ran haven't commented the lines that make form1 invisible. Yes @stakx form1 and even the form that opened it is closed :( – TheVillageIdiot Dec 5 '10 at 15:50
feedback

2 Answers

up vote 4 down vote accepted

Yes, this code is troublesome. It goes wrong when the user closes the dialog. Windows must then find another window to give the focus to. There isn't any left in your app, your main window is invisible. It then picks a window of another app. Odds are good, for example, that this will be a window inside Visual Studio. A big one. Your main form now disappears behind it.

You need to make sure that your main window is visible again before the dialog closes. You can do so by subscribing to the dialog's FormClosing event handler. For example:

    private void button1_Click(object sender, EventArgs e) {
        using (var dlg = new Form2()) {
            dlg.StartPosition = FormStartPosition.Manual;
            dlg.Location = this.Location;
            dlg.FormClosing += (s, ea) => this.Show();    // <=== Here
            this.Hide();
            if (dlg.ShowDialog() == DialogResult.OK) {
                // etc...
            }
        }
    }
link|improve this answer
Yes @Hans I was also thinking on this line after asking question and going on for a walk. As we use this a lot in applications we build at work and only difference is that we don't hide the form from which we are showing another form as dialog. Let me check it, BRB :D – TheVillageIdiot Dec 5 '10 at 15:49
Thanks @Hans, using Hide() instead of Visible = false; worked. – TheVillageIdiot Dec 5 '10 at 16:07
Hmm, the Hide() method contains just one line of code: this.Visible = false; – Hans Passant Dec 5 '10 at 16:23
feedback
  • Have you considered exceptions? If Form2 throws an exception, your last statements Visible = true and ShowInTaskbar = true won't be executed. What happens when you try this:

    ShowInTaskbar = Visible = false;
    try
    {
        using (var f = new Form2())  // (added since Form2 is an IDisposable)
        {
            f.ShowDialog();
        }
    }
    finally  // make sure that the following gets executed even when 
    {        // exceptions are thrown during f.ShowDialog():
        ShowInTaskbar = Visible = true;
    }
    

  • What happens when you open another form than a Form2 inside this method?

    If the problem goes away, the problem is probably not within this method, but with Form2.

    If the problem persists: Are you sure you're doing exactly the same thing in this method than in other methods where you apply the same technique?


  • Try removing the first line and see if the problem still persists. Or asked differently: Does your parent form only stay invisible or does it really get closed?
link|improve this answer
1  
Of course this would all be clear as day if the project was debugged in Visual Studio... – Macropus Dec 5 '10 at 12:40
I have debugged it and when I was not able to get any clue, I decided to raise it here. @stakx There is no exception and Visible = true; ShowInTaskbar = true; does get execute. But after this it closes the form. I think @Hans Passant's point is good one and I'm going to test it. – TheVillageIdiot Dec 5 '10 at 15:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.