[RESOLVED] icon/pictures on Imagelist control to image box control
anyone knows how to load the icon or picture files from imagelist control to image box control?
Re: icon/pictures on Imagelist control to image box control
Simple. Suggest reviewing your help files.
Code:
Set Image1.Picture = ImageList1.ListImages(x) ' x is value btwn 1 & nr of images in list
Re: icon/pictures on Imagelist control to image box control
i use this
Code:
Set Image4.Picture = Imagelist1.ListImages(1)
and i got this error
"run-time error '13':
type mismatch
Re: icon/pictures on Imagelist control to image box control
Quote:
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
Re: icon/pictures on Imagelist control to image box control
working ... thanks to you .