I need icons with size 13x13 for insert them in a menu, so how do I stretch icons to this size? I've tried StretchBlt with no success.
Thanks for any help.
Graymalkin
Printable View
I need icons with size 13x13 for insert them in a menu, so how do I stretch icons to this size? I've tried StretchBlt with no success.
Thanks for any help.
Graymalkin
Make 13x13 icons and put them in a picture box. If you want to stretch them some graphic tool.
You could use the ImageList control to size and or convert an image to an icon.
VB Code:
ImageList1.ImageHeight = 13 ImageList1.ImageWidth = 13 ImageList1.ListImages.Add , , Picture1.Picture Set Picture2.Picture = ImageList1.ListImages(1).ExtractIcon