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:
Printable View
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:
Something like this...
Code:Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
picExample.Image = ImageList1.Images(0)
End Sub