View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tim Williams Tim Williams is offline
external usenet poster
 
Posts: 1,588
Default Import pictures from the web

With ActiveSheet.Pictures
.Insert("http://www.abc.com/1234.jpg")
End With

Tim.

--
Tim Williams
Palo Alto, CA


"Shatin" wrote in message
...
When I import external data from the web, I find that the pictures are all
gone. Is there anyway to include the pictures in the import?

In fact, if I have a link which is something like this
http://www.abc.com/1234.jpg, how can I import this jpg file into Excel,
using VBA or otherwise?

Thanks!