Hi there,
I've defined an interface in a unit which is implemented in all of my forms. Now that the project becomes too large, I thought creating separate DLLs which will includes each module's specific forms.
Menu.exe
- Module1.dll {Form1-1; Form1-2; Form1-3}
- Module2.dll {Form2-1; Form2-2; Form2-3}
- Module3.dll {Form3-1; Form3-2; Form3-3}
Here's my problem: I would like to have my interface as the libraries entry points (a bridge between my main EXE and separate DLLs). Do I need to create a new library for my interface (tlb or dll?) for the interface type to be known?
Any idea how to do it or even better sample source code?
Thanks a lot in advance,
I've defined an interface in a unit which is implemented in all of my forms. Now that the project becomes too large, I thought creating separate DLLs which will includes each module's specific forms.
Menu.exe
- Module1.dll {Form1-1; Form1-2; Form1-3}
- Module2.dll {Form2-1; Form2-2; Form2-3}
- Module3.dll {Form3-1; Form3-2; Form3-3}
Here's my problem: I would like to have my interface as the libraries entry points (a bridge between my main EXE and separate DLLs). Do I need to create a new library for my interface (tlb or dll?) for the interface type to be known?
Any idea how to do it or even better sample source code?
Thanks a lot in advance,