(Gast)
n/a Beiträge
|
Re: Umschalten zum Task verhindern - Programm verstecken
24. Mär 2009, 17:01
Probier mal Folgendes:
Delphi-Quellcode:
function HideFromALTTAB( hWnd: Cardinal ): Cardinal;
begin
Result := SetWindowLong( hWnd, GWL_EXSTYLE,
GetWindowLong( hWnd, GWL_EXSTYLE ) or WS_EX_TOOLWINDOW );
end;
|
|
Zitat
|