anyone knows how to load the icon or picture files from imagelist control to image box control?
~[L!f3 !s @ll @ab0ut l3@rn!ng]~ ~*D0nt Give up, h0pe is always present*~
Simple. Suggest reviewing your help files. Code: Set Image1.Picture = ImageList1.ListImages(x) ' x is value btwn 1 & nr of images in list
Set Image1.Picture = ImageList1.ListImages(x) ' x is value btwn 1 & nr of images in list
Insomnia is just a byproduct of, "It can't be done" Classics Enthusiast? Here's my 1969 Mustang Mach I Fastback. Her sister '67 Coupe has been adopted Newbie? Novice? Bored? Spend a few minutes browsing the FAQ section of the forum. Read the HitchHiker's Guide to Getting Help on the Forums. Here is the list of TAGs you can use to format your posts Here are VB6 Help Files online {Alpha Image Control} {Memory Leak FAQ} {Unicode Open/Save Dialog} {Resource Image Viewer/Extractor} {VB and DPI Tutorial} {Manifest Creator} {UserControl Button Template} {stdPicture Render Usage}
i use this Code: Set Image4.Picture = Imagelist1.ListImages(1) and i got this error "run-time error '13': type mismatch
Set Image4.Picture = Imagelist1.ListImages(1)
Originally Posted by Condomx i use this Code: Set Image4.Picture = Imagelist1.ListImages(1) and i got this error "run-time error '13': type mismatch Oops. Set Image4.Picture = Imagelist1.ListImages(1).Picture
working ... thanks to you .
Forum Rules