Modular Application Delphi

3

I'm starting to work with modular applications on DelphiXE3 , however I'm not finding much about it.

Taking a little something from here, I created a dll with a form and added it to a DLL. My question now is this: How do I call this form from my main application?

At first I'm just doing some testing, as soon as I can understand the concept of modularization, I have an entire project to make it modular.

    
asked by anonymous 28.04.2014 / 22:41

1 answer

2

The best way to modularize a Delphi application is through packages , not DLLs. Packages are actually DLLs, but they do carry rich typing information (which is not the case for a DLL), which is precisely what will allow you to create an executable and to load existing objects into < strong> packages .

    
28.04.2014 / 22:46