ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] wrod文档激活出问题,求高手指点 在线等

[复制链接]

TA的精华主题

TA的得分主题

发表于 2015-6-13 19:01 | 显示全部楼层 |阅读模式
Option Explicit
Const g_strRootPath = "C:\word2"                '指定存放所有文件的目录,可以有子目录
Const g_nTitleMaxLen = 28                            '指定获取文档里面第一段中的前多少个字符来作为文件名
'Call Main

Sub Main批量文档处理()    '主函数入口
    Dim fso, oFolder, oWordApp
    Set oWordApp = CreateObject("Word.Application")
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set oFolder = fso.GetFolder(g_strRootPath)
    RenameDocFilesUnderFolder oWordApp, fso, oFolder
    oWordApp.Quit
    Set oWordApp = Nothing
   
    MsgBox "完成!"
   
End Sub

Sub RenameDocFilesUnderFolder(oWordApp, fso, oFolder) '重命名指定文件夹(递归)下面的所有Word文件,按照文件里面的第一句可见的文字命名
   
    Dim oSubFolder, oFile, oDoc
    Dim strTitle, strFileName

    For Each oSubFolder In oFolder.SubFolders
        RenameDocFilesUnderFolder oWordApp, fso, oSubFolder
   
    Next
   
    For Each oFile In oFolder.Files
       Set oDoc = oWordApp.Documents.Open(oFile.Path) '打开word

       oWordApp.Visible = True 'word可见
'       激活WORD

       Documents(oDoc).Activate '这里的激活不对,所以下面的代码就没有达到想要的结果 不知道哪里出了问题

'       strTitle = GetFirstVisibleTextContent(oDoc) '获取文档第一行字  //要改为,进入排版要求
       MsgBox ActiveDocument.Name
'===================================把页面格式改一下!录制而成~!
    Selection.WholeStory
    With ActiveDocument.Styles(wdStyleNormal).Font
        If .NameFarEast = .NameAscii Then
            .NameAscii = ""
        End If
        .NameFarEast = ""
    End With
    With ActiveDocument.PageSetup
        .LineNumbering.Active = False
        .Orientation = wdOrientPortrait
        .TopMargin = CentimetersToPoints(2)
        .BottomMargin = CentimetersToPoints(2)
        .LeftMargin = CentimetersToPoints(2)
        .RightMargin = CentimetersToPoints(2)
        .Gutter = CentimetersToPoints(0)
        .HeaderDistance = CentimetersToPoints(1.5)
        .FooterDistance = CentimetersToPoints(1.75)
        .PageWidth = CentimetersToPoints(21)
        .PageHeight = CentimetersToPoints(29.7)
        .FirstPageTray = wdPrinterDefaultBin
        .OtherPagesTray = wdPrinterDefaultBin
        .SectionStart = wdSectionNewPage
        .OddAndEvenPagesHeaderFooter = False
        .DifferentFirstPageHeaderFooter = False
        .VerticalAlignment = wdAlignVerticalTop
        .SuppressEndnotes = False
        .MirrorMargins = False
        .TwoPagesOnOne = False
        .BookFoldPrinting = False
        .BookFoldRevPrinting = False
        .BookFoldPrintingSheets = 1
        .GutterPos = wdGutterPosLeft
        .LayoutMode = wdLayoutModeLineGrid
    End With
'===================================
'      保存WORD
'       Documents(oDoc).Save
      
       oDoc.Close SaveChanges:=wdSaveChanges '文档关闭 //改为保存再关闭
       Set oDoc = Nothing
       '下面代码为改名代码 // 不要
'       If Len(strTitle) <> 0 Then
'          strFileName = fso.BuildPath(fso.GetParentFolderName(oFile.Path), strTitle & "." & fso.GetExtensionName(oFile.Path))
'          strFileName = GetUniqueFileName(fso, strFileName)
'          fso.MoveFile oFile.Path, strFileName
'       End If
   
    Next

End Sub
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-16 02:43 , Processed in 0.017588 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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