We have an application with a main form and a second non-modal form which can be used side by side. Our main form shows a list of configurations, while the second non-modal form shows a configuration in more detail.
When we show a modal form (requested from the second non-modal form), the main form pops up in front of the second form until we close that modal form.
How can I avoid this behaviour? I already tried creating that last modal form in different ways ('Applicaton.CreateForm', 'TForm.Create', setting the parent), but still get the main form to pop up.
Any ideas?
Thanks in advance!