Hi,
I'm new with C# and trying to create a child window as we have it when clicking the "Internet Options ..." of the Internet Explorer. This parent child window cannot get the focus as long the child window is up.
How do you do approach this?
I set the isMdiParent of my main form to "true" and coded the following lines when klicking a button. Unfortunately this doesn't work. Opening it just as a regular window works great. Any clue? I appreciate any hint. Thanks
----------------------------------
MyForm flc = new MyForm();
flc.MdiParent = this;
flc.Show();
flc.Focus();
----------------------------------
I'm new with C# and trying to create a child window as we have it when clicking the "Internet Options ..." of the Internet Explorer. This parent child window cannot get the focus as long the child window is up.
How do you do approach this?
I set the isMdiParent of my main form to "true" and coded the following lines when klicking a button. Unfortunately this doesn't work. Opening it just as a regular window works great. Any clue? I appreciate any hint. Thanks
----------------------------------
MyForm flc = new MyForm();
flc.MdiParent = this;
flc.Show();
flc.Focus();
----------------------------------