Excel 2007 显示图像路径中的图像?

发布于 2024-12-04 07:15:34 字数 328 浏览 0 评论 0原文

我想将图像插入单元格中。 下面的代码将其插入到工作表中:

            With wb.Sheets(1).Pictures.Insert("\\bk01fil0001\salesdb$\ImageUpload\NoImage.gif")
            .Left = wb.Sheets(1).Range("B2").Left
            .Top = wb.Sheets(1).Range("B2").Top
            .Width = wb.Sheets(1).Range("B2").Width
            End With

I would like to insert an image into a cell.
The code below inserts it into a sheet:

            With wb.Sheets(1).Pictures.Insert("\\bk01fil0001\salesdb$\ImageUpload\NoImage.gif")
            .Left = wb.Sheets(1).Range("B2").Left
            .Top = wb.Sheets(1).Range("B2").Top
            .Width = wb.Sheets(1).Range("B2").Width
            End With

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝戈者 2024-12-11 07:15:34

您无法在单元格内插入图片:它们始终位于工作表的“顶部”。您能做的最好的事情就是将其放置在所需的单元格/范围内,就像您已经在做的那样。

You can't insert a picture inside a cell: they always sit "on top" of the worksheet. Best you can do is position it over the required cell/range as you are already doing.

孤君无依 2024-12-11 07:15:34

您可以通过选择一个单元格然后插入图片来使事情变得更简单...

Sheets(1).Select
Range("B2").Select
ActiveSheet.Pictures.Insert("\\bk01fil0001\salesdb$\ImageUpload\NoImage.gif")

我认为这不会是一种效率较低的方法,因为您只想在可见的工作表上插入图片。我不认为您需要多次选择工作表(如果有的话

)(顺便说一句,听起来好像您正在尝试在表格的一列中自动插入图像,在这种情况下,我强烈建议使用单元格符号如 Excel Visual Basic 视频 附带的文本中所述)

You can make things a little simpler by selecting a cell then inserting the picture...

Sheets(1).Select
Range("B2").Select
ActiveSheet.Pictures.Insert("\\bk01fil0001\salesdb$\ImageUpload\NoImage.gif")

I don't think this would ever be a less efficient method as you would only ever wish to insert a picture on a visible sheet. I do not see you would need to select the sheet more than once, if at all

(As an aside, it sounds as though you are trying to auto-insert images in one column of a table in which case I would strongly recommend using Cells notation as described in the text accompanying this Excel Visual Basic video)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文