Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lucmarcio/f3f87a5539e20dbe1f50ec1c124f3aca to your computer and use it in GitHub Desktop.
Save lucmarcio/f3f87a5539e20dbe1f50ec1c124f3aca to your computer and use it in GitHub Desktop.
GetIcone
function TForm1.getIcone(const icone: string): TBitmap;
var
RS: TResourceStream;
begin
Result := TBitmap.Create;
if (icone<> '') and (FindResource(hInstance, PChar(icone), RT_RCDATA) <> 0) then
begin
try
RS := TResourceStream.Create(hInstance, icone, RT_RCDATA);
try
Result.LoadfromStream(RS);
finally
RS.DisposeOf;
end;
finally
end;
end;
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment