There are 2 forms, I can use the "uses" clause so that the first form can access to the other, but in it is not possible to make this in both directions.
(Fatal: Circular unit reference between Unit 1and Unit2
Is there a solution?
There are 2 forms, Unit1 says
Form2.Show; Form1.Hide;When Form2 is closed by user, Application doesn't end, Form1 is still the "MainForm" and keeps running, but hidden.
I tried
Form2.Show; Form1.Close; but then the application ends immediately?!
Thanks a lot for your advice
Martin