View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default how to add picture to worksheet from url in Excel 2007

Hi qyang

I see the same thing after testing
Will try to find a answer for you


--

Regards Ron de Bruin
http://www.rondebruin.nl



"qyang" wrote in message
...
In Excel XP or Excel 2003, we can add picture to worksheet from url,
besides
from file. There are two functions that can do the job:

1. ActiveSheet.Pictures.Insert Filename:=strUrl
2. ActiveSheet.Shapes.AddPicture Left:=10, Top:=10, _
Width:=100, Height:=100, _
Filename:=strUrl, LinkToFile:=msoFalse, SaveWithDocument:=msoTrue

However, in Excel 2007, both of the above functions don't work. I'm not
sure
if the same function is taken away from Excel 2007, or if some settings
are
not set properly.

thanks for any help