F
Fantus
I'm developing a Pocket PC Application comprised of
multiple WinForms. When I perform the following
function, I noticed that my Application appears multiple
times in the Pocket PC Task Manager. If you happen to
select the wrong Application, it brings up the Parent
form and not the Dialog. Is there any way to correct
this problem so that my Application only appears once in
the Task Manager? Do I possibly have some parameters
setup incorrectly for the parent or child forms?
Here is the simple code I'm using to display a dialog.
private void button1_Click(object sender,
System.EventArgs e)
{
MyDialog dlg = new MyDialog();
DialogResult Result = dlg.ShowDialog();
}
Of course, if MyDialog also pops up another WinForm, then
the problem gets even more complicated.
=======
-F
multiple WinForms. When I perform the following
function, I noticed that my Application appears multiple
times in the Pocket PC Task Manager. If you happen to
select the wrong Application, it brings up the Parent
form and not the Dialog. Is there any way to correct
this problem so that my Application only appears once in
the Task Manager? Do I possibly have some parameters
setup incorrectly for the parent or child forms?
Here is the simple code I'm using to display a dialog.
private void button1_Click(object sender,
System.EventArgs e)
{
MyDialog dlg = new MyDialog();
DialogResult Result = dlg.ShowDialog();
}
Of course, if MyDialog also pops up another WinForm, then
the problem gets even more complicated.
=======
-F