Using the "Microsoft Internet Transfer Protocol Control" you can grab web images.
Dim bytData() As Byte
bytData() = Inet1.OpenURL("http://www.somesite.com/images/image1.gif", icByteArray)
Open App.Path & "\example.gif" For Binary Access Write As #1
Put #1, , bytData()
Close #1