Another modal form related question

I

Isabelle

Hi all

My application has a splash screen (a modal form) that kicks out a
wizard-like window (another modal form).

All is in C#

For the sake of my example, let's say that I have MS Outlook up on my
machine. I have also my application starting up.

My wizard is the form with the focus.

Let's say I go to my MS Outlook to do some email, and then I click
directly on the wizard's item in my Windows TaskBar
(I have ShowTaskBar = true for this case), I will have Outlook between
my app and my wizard.

Is there a way to "glue" my app and its wizard (a modal form) together
so they can't be separated by any other application running on my box?

Thanks in advance for the help, much appreciated

Isabelle
 
I

Isabelle

For references:


I was launching my modal splash screen with
frmSplashScreen.ShowDialog(frmMain);
but when I was launching my frmWizard, I was not setting the owner.
All I did was passing in the owner like this:
frmWizard.ShowDialog(this); and it did the job.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top