We have customers using high res 4K monitors with the Windows display scaling at 300%. Using theTAdvFileNameEdit control under those situations, the button icon is tiny, Is there a way to scale the button icon?
TAdvFileNameEdit 1.7.0.0
Delphi 10.4.2
What you can do is assign a VirtualImageList to AdvFileNameEdit.Images and select the image for the button with AdvFileNameEdit.GlyphIndex: integer and this VirtualImageList image size should adapt with DPI and thus, show a large image on high DPI screens.
Thanks. My bad, RTFM I guess. I was looking in a totally wrong area. I saw all the Buttonxxxx properties and expected to see something there like ButtonImages and ButtionImageIndex. But Images and GyphIndex properties just didn't register as being related, plus I had to manually enter the image index number rather than the usual dropdown selection of an image icon.
All good, works perfectly.