How to Create composite images using imagelist control
Posted on January 4, 2009
1 2 3 4 5 6 7 8 | 'Controls - How to Create composite images using imagelist control 'The ImageList control also includes the ability to create composite images by 'overlaying two individual images held in ListImage objects. This can be 'accomplished using the Overlay method. PaintPicture ImageList1.ListImages(1).Picture, 0, 10, 64, 64 PaintPicture ImageList1.ListImages(2).Picture, 100, 10, 64, 64 PaintPicture ImageList1.Overlay(1, 2), 200, 10, 64, 64 |