Einzelnen Beitrag anzeigen

TurboMartin

Registriert seit: 13. Feb 2006
Ort: Bad Honnef
765 Beiträge
 
Turbo Delphi für Win32
 
#3

Re: Fenster aus ALT+TAB-Liste entfernen

  Alt 5. Jul 2008, 17:10
Probiere es doch mal damit:
Delphi-Quellcode:
procedure frmName.HideAT();
var WindowLong: Integer;
begin
   WindowLong := GetWindowLong(Handle, GWL_EXSTYLE)
   SetWindowLong(this.Handle, GWL_EXSTYLE, WindowLong | WS_EX_TOOLWINDOW);
end;
Tomorrow will be cancelled due to lack of interest.

  Mit Zitat antworten Zitat