In thread 222-1012528, strongm posted a very useful Iconize function. Is seems that this will convert the bmp to a 16 color icon. I modified to function to save the new icon.
Is is possible to save this new icon in 256 colors or true color?
Thanks,
Harold
***You can't change your past, but you can change your future***
Code:
With CreateObject("MSComctlLib.ImageListCtrl")
.MaskColor = lTransparantColor
.UseMaskColor = True
Set Iconize = .ListImages.Add(, , LoadPicture(strGraphicFile)).ExtractIcon
SavePicture .ListImages(1).ExtractIcon, "c:/NewIcon.ico"
End With
Is is possible to save this new icon in 256 colors or true color?
Thanks,
Harold
***You can't change your past, but you can change your future***