Delphi weiss vermutlich gar nicht, das die 2.Form sichtbar ist..
So gehts bei mir:
Delphi-Quellcode:
Procedure TForm1.btAlertClick(Sender: TObject);
Begin
Form2.Show;
SetFocus;
ActiveControl := edit1; // Edit1 ist fokusiert
End;
Bei Form2 habe ich FormStyle auf 'fsStayOnTop' gesetzt...
Geht doch..