How do I make it so when a program loads, it opens multiple forms, but they're like tools, such as in the Lazarus IDE there are multiple windows that all affect each other?

link|improve this question
That's pretty unclear, windows float by design. Create tool windows by using the Show(owner) overload. It ensures the tool window also stays above the main window. – Hans Passant Jul 4 '11 at 18:35
I think you should manage it by yourself. I'm not familiar with Lazaruz, but looking on images on their website it seems to me that they use regular windowses like toolboxes. So I think if you want to implement kind of "docking" for windowsforms you should handle it by yourself, or you can implement user controls that look like windowsform, but I think this is much complicated. – Tigran Jul 4 '11 at 19:40
feedback

1 Answer

What you are describing is a multiple document interface (MDI) application, commonly used where windows reside under a single parent window.

http://en.wikipedia.org/wiki/Multiple_document_interface

Advice on creating such applications is a broad subject - but the followings links should help you on your path:

Good luck and feel free to ask about any specific problems you have.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.