|
-
Jun 16th, 2001, 12:42 PM
#1
Thread Starter
New Member
Icon size
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
-
Jun 16th, 2001, 01:06 PM
#2
Frenzied Member
Make 13x13 icons and put them in a picture box. If you want to stretch them some graphic tool.
-
Jun 17th, 2001, 08:28 AM
#3
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|