Hi All,

I didn't found something about that subject.

Like the question says.
I want to fill a combobox with the Imagesnames from a imagelist.
How can I do that?

This is already a part of my app.
When I fill my combobox manually then I call the image like this:

Code:
Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
        PictureBox1.Image = (ImageList1.Images(ComboBox1.SelectedItem & ".jpg"))
    End Sub
That's working very good, but how should I do the other part.

Thanks,

sparrow1