bitte kommt jetzt nicht AutoSize, center oder strech
also bitte
das sollte jetzt aber gut sein
Noch mal
2 Images 16x16 der rest standard
in den einen lade ich ein icon 16x16 rein und es wird super angezeigt
das gleiche icon(16x16) aus einer
dll wir 32x32 anzeigt und dann nur zu einem 1/4
die Function mit der ich es aud der
dll rufe
Code:
//******************************************************************************
//Global
//Icon aus Image_Shell.dll
Function ImageShell_Icon_Lesen_GU(icon_s : String) : TIcon;
var
lib_h :HINST;
begin
lib_h := LoadLibrary(PChar(g_programm_path_s + 'Image_Shell.dll'));
Result := NIL;
try
if lib_h <> 0 then
begin
Result := TIcon.Create;
Result.Handle := LoadIcon(lib_h, PChar(icon_s));
end;
finally
FreeLibrary(lib_h);
end;
end;
ich hoffe ich konnte mich verständlich ausdrücken
warum wird mein icon 16x16 aus der
dll auf einmal 32x32 angezeigt