hi,
also.
habe mir jetzt mal diese procedure gebastelt:
Delphi-Quellcode:
procedure Stayontop (Stayontop:Boolean);
begin
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)
end;
ABER:
1.Ich starte ein Spiel im vollbildmodus
2.wenn ich da hin gehe, wo im windows die form ist, wird mein zeiger zu nem normalem curosr, aber die form kann man nicht sehen.