Registriert seit: 8. Nov 2005
Ort: nähe Stuttgart
981 Beiträge
Delphi XE2 Professional
|
Re: Form immer im vordergrund
18. Mai 2006, 22:58
OK Probiers mal damit
Mit
Stayontop :Boolean
Delphi-Quellcode:
If Stayontop Then
SetWindowPos (Form1.Handle, HWND_TOPMOST, -1, -1, -1, -1, SWP_NOMOVE + SWP_NOSIZE)
Else
SetWindowPos (Form1.Handle, HWND_NOTOPMOST, -1, -1, -1, -1, SWP_NOMOVE + SWP_NOSIZE)
So mache ich das in meinem Project
|
|
Zitat
|