dim c as System.Net.WebClient = New System.Net.Webclient
dim s as IO.Stream = c.openread(imgURL)
dim imgTemp as image = System.Drawing.Image.FromStream(s)
'proof:
picturebox1.image = imgTemp
s.close
c.dispose
c = nothing
That should get the image, adding it dynamically to an Imagelist would be
here: