Hi,
I have an application and a number of dlls all written in BCB6.
The problem that i have is that each form in the dlls that are called from
the main application all open as separate windows/instances on the taskbar instead
of all just being one application. How do i make them all just one instance?
Currently the dlls are all called dynamically using LoadLibrary() and GetProcAddress()
and all forms in the dll are built at design time and called dynamically in the form of
TForm1 *frm = new TForm1(0);
frm->ShowModal();
delete frm;
I've tried setting the owner as Application but still get the same result
Most of the forms in the dlls that are called directly from the application
are fsNormal which is the way they need to stay
Any ideas anyone?
Thx in advance
I have an application and a number of dlls all written in BCB6.
The problem that i have is that each form in the dlls that are called from
the main application all open as separate windows/instances on the taskbar instead
of all just being one application. How do i make them all just one instance?
Currently the dlls are all called dynamically using LoadLibrary() and GetProcAddress()
and all forms in the dll are built at design time and called dynamically in the form of
TForm1 *frm = new TForm1(0);
frm->ShowModal();
delete frm;
I've tried setting the owner as Application but still get the same result
Most of the forms in the dlls that are called directly from the application
are fsNormal which is the way they need to stay
Any ideas anyone?
Thx in advance