MDI Child from DLL

  • Thread starter Thread starter vovan
  • Start date Start date
V

vovan

I'd like to modularize the application:
MDI form is in the main project, and children forms are in DLLs created in
separate projects.
I have no problem with creating DLL, containing the form and create an
object from that DLL in a separate project. But how to make the form from
DLL be the child of the main form?

Thank you
Vovan
 
vovan said:
MDI form is in the main project, and children forms are in DLLs created in
separate projects.
I have no problem with creating DLL, containing the form and create an
object from that DLL in a separate project. But how to make the form from
DLL be the child of the main form?

Assign the main form to its 'MdiParent' property.
 
Back
Top