Zitat von
Marphy:
Hey Toms, noch da?
Jawohl....
Habe den Code noch etwas veraendert.
Nun zeigt's bei AntiVir
PE das richtige grosse Icon an, beim kleinen aber
ein anderes.
Delphi-Quellcode:
hIcone := SendMessage(WinHandle, WM_GETICON, ICON_SMALL, 0);
if hIcone = 0 then
hIcone := HICON(GetClassLong(WinHandle, GCL_HICONSM));
Image1.Picture.Icon.Handle := hIcone;
// get big Icon
hIcone := SendMessage(WinHandle, WM_GETICON, ICON_BIG, 0);
if hIcone = 0 then
hIcone := HICON(GetClassLong(WinHandle, GCL_HICON));
Image2.Picture.Icon.Handle := hIcone;