K
Kalv
Hi,
I have produced a MDI application in C#. And basically i produce a
child form from the container and then i produce another child from
that child.
I do this by (code in child frmCustomers)
frmCustomerSummary = new frmMatchSummary(....);
frmCustomerSummary.MDIParent = this.MDIParent;
frmCustomerSummary.Show();
This all works fine and the form is displayed as a MDI child But It's
not in focus, the title bar is not selected, although it is at the top
of the other forms. The frmCustomers that produced the child form is
selected, the only way to gain focus is click off and then back on
again.
I have tried .activate(), and it still doesn't still work.
What am i doing wrong?
Kalv
I have produced a MDI application in C#. And basically i produce a
child form from the container and then i produce another child from
that child.
I do this by (code in child frmCustomers)
frmCustomerSummary = new frmMatchSummary(....);
frmCustomerSummary.MDIParent = this.MDIParent;
frmCustomerSummary.Show();
This all works fine and the form is displayed as a MDI child But It's
not in focus, the title bar is not selected, although it is at the top
of the other forms. The frmCustomers that produced the child form is
selected, the only way to gain focus is click off and then back on
again.
I have tried .activate(), and it still doesn't still work.
What am i doing wrong?
Kalv