Einzelnen Beitrag anzeigen

Hawkeye219

Registriert seit: 18. Feb 2006
Ort: Stolberg
2.227 Beiträge
 
Delphi 2010 Professional
 
#6

Re: Fehler beim Laden eines Bilds aus .dll

  Alt 9. Apr 2006, 16:12
Hallo,

versuche es einmal so:

Delphi-Quellcode:
h := LoadLibrary('Pictures.dll');
if h <> 0 then
begin
  try
    ImgInst00.Picture.Bitmap.Handle := LoadBitmap(h, 'Pic00');
  finally
    FreeLibrary(h);
  end;
end;
Gruß Hawkeye
  Mit Zitat antworten Zitat