ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 915|回复: 4

[求助] Word中VBA在每个文件夹下生成一个同文件夹名称的Word文档、再导入指定图片并设置格式

[复制链接]

TA的精华主题

TA的得分主题

发表于 2022-4-16 15:58 | 显示全部楼层 |阅读模式
各位老师大家好!请老师们帮帮忙,谢谢老师们了,如下:
Word中VBA在每个文件夹下生成一个同文件夹名称的Word文档、再导入指定图片、并设置图片宽度和高度
如图: 说明.jpg
插入后效果.jpg
附件.rar (31.99 KB, 下载次数: 5)

TA的精华主题

TA的得分主题

 楼主| 发表于 2022-4-17 08:46 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
老师们周末愉快,请老师们帮帮忙,谢谢老师们了!

TA的精华主题

TA的得分主题

发表于 2022-5-10 11:08 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
yjwdjfqb 发表于 2022-4-17 08:46
老师们周末愉快,请老师们帮帮忙,谢谢老师们了!

试试:

  1. Sub GetPic()
  2.     Dim fth, fld, drv As Object, pth
  3.     On Error Resume Next
  4.     Application.ScreenUpdating = False
  5.     fth = ThisDocument.Path
  6.     Set obMapp = CreateObject("Shell.Application").BrowseForFolder(0, stMedd, fth)    '&H1
  7.     If Not obMapp Is Nothing Then
  8.        fld = CreateObject("scripting.filesystemobject").GetFolder(fth).SubFolders
  9.        For Each drv In CreateObject("scripting.filesystemobject").GetFolder(fth).SubFolders
  10.            pth = fth & "" & drv.Name
  11.            Call PictoWord(pth, ".jpg")
  12.        Next
  13.     End If
  14.     MsgBox "ok!"
  15.     Application.ScreenUpdating = True
  16. End Sub

  17. Function PictoWord(ByVal wpth As String, ByVal hj As String)
  18. Dim wd, i As Long, n As Long, f
  19. On Error Resume Next
  20. Application.ScreenUpdating = False
  21. Set wd = CreateObject("word.application")
  22. Set wd = Documents.Add
  23.     With Selection.PageSetup
  24.         .LineNumbering.Active = False
  25.         .Orientation = wdOrientPortrait
  26.         .TopMargin = CentimetersToPoints(2.5)
  27.         .BottomMargin = CentimetersToPoints(2.5)
  28.         .LeftMargin = CentimetersToPoints(3)
  29.         .RightMargin = CentimetersToPoints(3)
  30.         .Gutter = CentimetersToPoints(0)
  31.         .HeaderDistance = CentimetersToPoints(1.5)
  32.         .FooterDistance = CentimetersToPoints(1.75)
  33.         .PageWidth = CentimetersToPoints(21)
  34.         .PageHeight = CentimetersToPoints(29.7)
  35.         .FirstPageTray = wdPrinterDefaultBin
  36.         .OtherPagesTray = wdPrinterDefaultBin
  37.         .SectionStart = wdSectionNewPage
  38.         .OddAndEvenPagesHeaderFooter = False
  39.         .DifferentFirstPageHeaderFooter = False
  40.         .VerticalAlignment = wdAlignVerticalTop
  41.         .SuppressEndnotes = False
  42.         .MirrorMargins = False
  43.         .TwoPagesOnOne = False
  44.         .BookFoldPrinting = False
  45.         .BookFoldRevPrinting = False
  46.         .BookFoldPrintingSheets = 1
  47.         .GutterPos = wdGutterPosLeft
  48.         .CharsLine = 45
  49.         .LinesPage = 46
  50.         .LayoutMode = wdLayoutModeLineGrid
  51.     End With
  52.     ActiveDocument.Paragraphs.Format.Alignment = wdAlignParagraphCenter
  53.     Selection.TypeText Text:=Split(wpth, "")(UBound(Split(wpth, ""))) & " - 户口本" & vbLf
  54.     Selection.TypeText Text:=Format(Now(), "yyyy-mm-dd") & vbLf & vbLf
  55.    
  56.     f = Dir(wpth & "\*" & hj)
  57.     Do While f <> ""
  58.         If InStr(f, hj) Then
  59.            Set mypic = Selection.InlineShapes.AddPicture(FileName:=wpth & "" & f, SaveWithDocument:=True)
  60.            mypic.Width = CentimetersToPoints(7.5)
  61.            mypic.Height = CentimetersToPoints(5.5)
  62.            Selection.Range.ParagraphFormat.Reset
  63.            Selection.Range.Paragraphs.Alignment = wdAlignParagraphCenter
  64.            Selection.InsertAfter vbLf
  65.         End If
  66.         f = Dir()
  67.     Loop
  68.     Selection.InsertAfter Text:="县教育局"    'ActiveDocument.Content.InsertAfter Text:="县教育局"
  69.     wd.SaveAs FileName:=wpth & "" & Split(wpth, "")(UBound(Split(wpth, ""))) & ".doc"
  70.     wd.Close
  71.     wd.Quit
  72.     'Dim sCmd As String
  73.     'sCmd = "cmd /c Taskkill /im winword.exe /f /t"    '强制关闭word进程
  74.     'Shell sCmd
  75. Set wd = Nothing
  76. Application.ScreenUpdating = True
  77. End Function
复制代码


运行 GetPic

TA的精华主题

TA的得分主题

发表于 2022-5-10 11:10 | 显示全部楼层
代码审核中....
详见附件:

附件.rar

107.51 KB, 下载次数: 24

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2022-5-14 11:20 | 显示全部楼层
aman1516 发表于 2022-5-10 11:10
代码审核中....
详见附件:

太厉害了,谢谢老师的帮助!!!
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-23 03:51 , Processed in 0.047513 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表