picturebox and imagelist in C#

Hi,
I create an ImageList with some BMP file and create a PictureBox.
I would like to know how can I do for selecting an image from my list and put it on the Picturebox.
Best Regrads
[209 byte] By [yfbf] at [2007-11-19 2:44:33]
# 1 Re: picturebox and imagelist in C#
int Index=0;
this.pictureBox1.Image=this.Imagelist1.Images[Index];

?
Krzemo at 2007-11-9 1:42:20 >