PDA

Click to See Complete Forum and Search --> : stupid question


wireframe
Aug 20th, 2002, 01:44 PM
i know this question sounds stupid to all you experts, but i just started to learn vb, and i cant figure out how to change the image in an imagebox to something in an imagelist midway through the program.:confused:

Lethal
Aug 20th, 2002, 05:38 PM
Something like this...


Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
picExample.Image = ImageList1.Images(0)
End Sub