Hallo und herzlich Willkommen der der Delphi Praxis!!!
Da fallen mir spontan 2 Möglichkeiten ein. Eventuell ist es ja das, was Du suchst...
1.
Delphi-Quellcode:
SetWindowPos(Form1.Handle,
HWND_TOPMOST,
0, 0, 0, 0,
SWP_NOMOVE or SWP_NOSIZE or SWP_SHOWWINDOW);
... auch mal nach HWND_TOPMOST suchen.
2.
Form1.FormStyle := fsStayOnTop
... läßt sich auch im Object Inspector einstellen...
Grüße,
SCRaT