Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

It is possible to create more than one MDI form in a delphi application?

I developed a mdi application that has in its main form several child windows that are created at runtime. The child windows are custom forms. I want to display those custom forms in another form from the same application. Is this possible?

like image 493
zoomz Avatar asked Mar 21 '11 07:03

zoomz


1 Answers

No, that is not possible using standard VCL. Only the application's MainForm can be the MDI Form. But it should be possible by using win32 directly as shown here.

like image 109
Lars Truijens Avatar answered Sep 29 '22 10:09

Lars Truijens