如何在excel表中显示来自url的图像(2003)

时间:2013-04-10 20:13:21

标签: excel image excel-vba excel-2003 imageurl vba

如何编写用于显示的宏 来自我的网址的图片 excel 2003中的单元格。

任何人都可以提供帮助。

提前致谢。

1 个答案:

答案 0 :(得分:0)

最近有一个关于此的问题,也询问了重新调整大小以适应细胞。

https://stackoverflow.com/a/15589423/1467082

以下是您需要开始的4行代码:

Sub InsertPicFromURL()

Dim pic As String 'file path of pic
Dim myPicture As Picture 'embedded pic

pic = "http://www.gravatar.com/avatar/4d3ac4ebeddcf958a7b8d3e73c2c6805?s=128&d=identicon&r=PG"
Set myPicture = ActiveSheet.Pictures.Insert(pic)

End Sub