I have a very simple application with 2 forms, both with Formstatus = fsNormal.
The project autocreates both forms.
On Form1, I have a button with
procedure TForm1.Button1Click(Sender: TObject);
begin
Form2.Show
end;
When you click on Button1, From2 appears in front of Form1 => OK
When you click on any place on Form1, Form2 stays in front of Form1?!
Form1 receives focus, as its caption becomes bold, but I expect Form1 to appear in front of Form2!
What am I missing?
Delphi11 Community Edition
When creating 2 forms, Form2 and Form3, and I can switch between both of them, but not with Form1
Application
Sam Witse is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.