Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a program that can open multiple forms, and when there are a lot of them, they cascade when they are opened.

When a button is pressed, some code runs and the form closes

this.Visible = false; Kill.Zombies(); this.Close();

My Kill.Zombies(); method takes a few seconds to run, so I make the form invisible before running it. The problem I'm having is that even when it's invisible, the forms behind it don't refresh, and it's as if the form that should be invisible is still visible.

I try moving the form before making it invisible, and it still has the issue of showing up on top of forms behind it.

If you could give me some advice on how to fix this, I'd appreciate it.

share|improve this question

2 Answers

up vote 5 down vote accepted

Do you call Application.DoEvents() after this.Visible = false; ?

The proper way to do it would be multithreaded, but a call to DoEvents() might fix it.

share|improve this answer
Updated my answer at the same time you posted, lol, thanks – Gabriel Magana Jun 30 '10 at 16:21
Yes, this is correct answer, I understand question wrong. – Serkan Hekimoglu Jun 30 '10 at 16:22
Why not add some code showing the proper way as well (either using a ThreadPool or a BackgroundWorker)? – Daniel Pryden Jun 30 '10 at 16:24
This worked perfect. Saved me a headache for sure! – sooprise Jun 30 '10 at 17:11
@Daniel: Because that's not the question. The question is how to fix the display errors, which I answered. – Gabriel Magana Jun 30 '10 at 17:13
show 1 more comment
this.Visible = false; 
MethodInvoker mk = delegate {
Kill.Zombies(); this.Close();
};
mk.BeginInvoke(null,null);

use above code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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