|
楼主 |
发表于 2022-6-22 14:49
|
显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument '设置位置在正文
Str1 = "【姓名图" & 行号 - 1 & "】"
.Selection.HomeKey Unit:=wdStory '光标置于文件首
If .Selection.Find.Execute(Str1) Then '查找到指定字符串
.Selection.InlineShapes.AddPicture Filename:=Sheets("按钮页").Cells(2, 2) & "\" & Sheets("填表").Cells(行号, 1) & ".jpg", LinkToFile:=False, SaveWithDocument:=True
.Selection.Document.InlineShapes.Name = "123"
On Error Resume Next '忽略错误
.Selection.Document.InlineShapes(行号 - 1).Height = 200 '设置高度为1.1倍
.Selection.Document.InlineShapes(行号 - 1).Width = 130 '设置宽度为1.1倍
End If |
|