ExcelTip.Net留存知识帖 ---【注:附件之前被网盘供应商清空后,现已修复-现已修复-现已修复为本地下载!】
现在位置:首页 > 我的酷贴 > Excel VBA > 给批注插入图片

给批注插入图片

作者:绿色风 分类: 时间:2022-08-18 浏览:130
楼主
nothingwmm
 
  1. Sub PlaceGraph()
  2. Dim x As String, z As Range
  3. Application.ScreenUpdating = False
  4. ‘assign a temporary location to hold the image
  5. x = “C:\XWMJGraph.gif”
  6. ‘assign the cell to hold the comment
  7. Set z = Worksheets(“ChartInComment”).Range(“A3”)
  8. ‘delete any existing comment in the cell
  9. On Error Resume Next
  10. z.Comment.Delete
  11. On Error GoTo 0
  12. ‘select and export the chart
  13. ActiveSheet.ChartObjects(“Chart 1”).Activate
  14. ActiveChart.Export x
  15. ‘add a new comment to the cell, set the size and insert the chart
  16. With z.AddComment
  17.     With .Shape
  18.         .Height = 322
  19.         .Width = 465
  20.         .Fill.UserPicture x
  21.     End With
  22. End With
  23. ‘delete the temporary image
  24. Kill x
  25. Range(“A1”).Activate
  26. Application.ScreenUpdating = True
  27. Set z = Nothing
  28. End Sub
2楼
biaotiger1
mm一出手就是一大串的代码啊

加油!

免责声明

有感于原ExcelTip.Net留存知识的价值及部分知识具有的时间限定性因素, 经与ExcelTip.Net站长Apolloh商议并征得其同意, 现将原属ExcelTip.Net的知识帖采集资料于本站点进行展示, 供有需要的人士查询使用,也慰缅曾经的论坛时代。 所示各个帖子的原作者如对版权有异议, 可与本人沟通提出,或于本站点留言,我们会尽快处理。 在此,感谢ExcelTip.Net站长Apolloh的支持,感谢本站点所有人**绿色风(QQ:79664738)**的支持与奉献,特此鸣谢!
------本人网名**KevinChengCW(QQ:1210618015)**原ExcelTip.Net总版主之一

评论列表
sitemap