Hello!
Is possible to load the SVG images into the TAdvSVGImageCollection.Images?
I tried this, but nothing happens:
svgImages: TAdvSVGImageCollection;
...
svgImages.Images.Items[I].Data.LoadFromFile(SvgName)
...
No errors, just nothing is filled :)
Pieter
(Pieter)
2
Did you add AdvTypes.pas?
Yes, both AdvTypes and VCL.TMSFNCTypes.
found the problem 
The images get loaded correctly - I needed to update the TVirtualImageList 
img24virt.UpdateImageList;
Pieter
(Pieter)
5
Great, thanks for the followup!