Einzelnen Beitrag anzeigen

mr_emre_d
(Gast)

n/a Beiträge
 
#20

Re: [Help] Fenster aus Sysbar...

  Alt 21. Mär 2009, 20:23
Hier, in kryptischer Form
Delphi-Quellcode:
function HideFromToolbar( ApplicationHandle: Cardinal ): LongInt; assembler;
asm
  push eax
  push -20
  push eax
  call GetWindowLong
  or eax, 128
  pop edx
  push eax
  push GWL_EXSTYLE
  push edx
  call SetWindowLong
end;
Wäre auch mit nur einem Befehl (bestehend aus einem weiterem Befehl) in DP-Syntax machbar

MfG
  Mit Zitat antworten Zitat