A form always above the parent form?

C

Cat

It's easy to make a form "Always on top". Just use .TopMost.
But I want to make the child form is on top of only its parent window,
not other application's window. Like the toolbar of Photoshop.
How can I do this? Thanks.
 
T

Tim Wilson

Try setting the "Owner" property, of the child, to the parent form to see if
that gets you closer to what you're looking to do.
 
G

Guest

How do you show the form?

childform frm = new childform();
frm.ShowDialog(this);

try that

regds
Brian keating ei9fxb
 

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