View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Gandalf Gandalf is offline
external usenet poster
 
Posts: 1
Default Import URL picture into Excel cell

I am trying to import a picture off of the internet, not data, into an Excel
cell. I also do not want to have the image double clicked into an IE window.

I have extrapolated the following off of many web information pages. It
looks like this will require Excel's VB, to accomplish. In the Design Mode,
there is a Control involving Microsoft Web Browser, a Name Box with
WebBrowser1, and a function with =EMBED("Shell.Explorer.2",""). Excel's
Microsoft Visual Basic containing:

Private Sub Worksheet_Activate()
WebBrowser1.Navigate "www.worldcommunitygrid.org/images/pb/faah_0.jpg"
End Sub

The problem is, this will not work for me. Surprise, surprise. I am not
into VB. I'm sure someone out there in Internet land is rofl. I feel I am a
tweak away from
making this work, but what that tweak is I have no idea. You see, I have
been doing my homework, so to speak. It's just that, in the web info, I
think I am assumed to know something I don't.

The code seems to create an IE window inside the cell. It's just not
bringing in the image. Can someone show me how to make "my" code work? How
do I tell Excel that I want it to download the image?

All assistance gratefully appreciated,

Gandalf