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