G
Guest
I have a Windows Forms app. There is a main form, which
had buttons/menus to spawn sub-forms. I launch the sub-
form, from the main form "Click" handler for example, by
calling:
FormChild formChild = new FormChild();
formChild.ShowDialog();
The child form shows up fine, in full-screen.
However, when I look at the active programs, I see both
forms listed and can "activate" the main form. How do you
spawn a child form and have it -- and only it -- show up
in the "active programs" list?
e.
had buttons/menus to spawn sub-forms. I launch the sub-
form, from the main form "Click" handler for example, by
calling:
FormChild formChild = new FormChild();
formChild.ShowDialog();
The child form shows up fine, in full-screen.
However, when I look at the active programs, I see both
forms listed and can "activate" the main form. How do you
spawn a child form and have it -- and only it -- show up
in the "active programs" list?
e.