There is no ActiveForm member. Is that a Framework 2.0 addition?
Main Topics
Browse All TopicsI have an app with several forms. Some of the forms need to be able to detect if another form is showing a modal pop-up (form or message box). The easiest way to do this is to write a function IsShowingModalWindow() which does the obvious.
Unfortunately, there are hundreds of ways for these windows to be popping up a window, most of which are outside my control. Furthermore, everything is working in Framework 1.1, so I can't use Application.EnterThreadMod
OwnedForms works some of the time, but I need to be able to catch stuff like:
private void button_Click(object sender, System.EventArgs e)
{
MyForm form = new MyForm();
form.ShowDialog();
// Here there are no owned dialogs, but MyForm is clearly holding
// modal focus.
MessageBox.Show(this, "Modal message box");
// Even though this is the owner, the message box never shows up
// on the OwnedForms list.
}
Currently the app uses the CBT hook, but thanks to lack of context switching this is a buggy hack nightmare to work with (for example, you cannot get the window modal state until you first get the window caption -- why? No idea.)
So is there any clean way to do this?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
While I haven't found a good solution to the problem, the workaround I have found is the code below, which can tell if the window exists. Unfortunately the handle returned is unusable since Form.FromHandle will fail unless the Form.ActiveForm would have given you the same window anyway.
Fortunately it can be manipulated be calling into unmanaged Win32 code.
Business Accounts
Answer for Membership
by: jungesPosted on 2008-05-12 at 12:00:19ID: 21549602
try this:
if(myMDIForm.ActiveForm.Mo
...
}