Delphi Imagelist: Load icons with ResourceLoad from a .res
- by ben
Hi guys,
I', trying to load an icon from a res file into an image list.
I created the res file with the delphi ImageEditor.
And this way I'm trying to load the icon:
//if ImageList1.ResourceLoad(rtIcon, 'TEXT_BOLD', clWhite) then
if imagelist1.GetResource(rtIcon, 'TEXT_BOLD', 0, [lrDefaultColor], clRed) then
showmessage('loaded')
else
…