Einzelnen Beitrag anzeigen

mr_emre_d
(Gast)

n/a Beiträge
 
#24

Re: [Help] Fenster aus Sysbar...

  Alt 21. Mär 2009, 20:36
Mal ausprobieren

xD

EDIT:
OK. Haste recht

Delphi-Quellcode:
function HideFromToolbar( ApplicationHandle: Cardinal ): LongInt; assembler;
asm
  push eax
  push 0
  push eax
  call ShowWindow
  pop eax

  push eax
  push -20
  push eax
  call GetWindowLong
  or eax, 128

  pop edx
  push eax
  push GWL_EXSTYLE
  push edx
  call SetWindowLong

  push 5
  push eax
  call ShowWindow
end;
MfG
  Mit Zitat antworten Zitat