When opening two forms in succession i.e.
Form1.Show;
...
Form2.Show;
is there a way to keep Form2 in view (and not go behind Form1) when Form1 is clicked?
I do know that I can use Form2.ShowModal, but this prevents accessing Form1 controls.
Thanks
A.