moin christian
ich will nicht nur icon in die
dll tun sondern auch bmp's
mit der function bekomme ich immer die meldung recource nicht gefunden
und mit der function die meinst
Delphi-Quellcode:
//******************************************************************************
//Global
//Icon aus Image.dll
Function Icon_Lesen_GU(icon_nr_s : String) : TIcon;
var
h :HINST;
ic :TIcon;
i :integer;
begin
h := LoadLibrary('Image.dll');
if h <> 0 then
begin
ic := TIcon.Create;
try
ic.Handle := LoadIcon(h, PChar(icon_nr_s));
Result := ic;
finally
ic.Free;
end;
end;
FreeLibrary(h);
end;
und so rufe ich sie dann auf
Haupt_Form.Image1.Picture.Icon.Assign(Icon_Lesen_G U('Config_Icon1'));
bekomme ich immer eine Zugriffsverletzung