Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Insert Multiple Files Into a Word Document, Putting a Page Break Between Each FileContent of Insert Multiple Files Into a Word Document, Putting a Page Break Between Each File.vbsMD5 Hash: E3141162919A98AB0DF24139CF9A9847 |
||
Const wdPageBreak = 7
strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set objWord = CreateObject("Word.Application") objWord.Visible = True Set objDoc = objWord.Documents.Add() Set objSelection = objWord.Selection Set FileList = objWMIService.ExecQuery _ ("ASSOCIATORS OF {Win32_Directory.Name='C:\Scripts\Archive'} Where " _ & "ResultClass = CIM_DataFile") For Each objFile in FileList objSelection.InsertFile(objFile.Name) objSelection.InsertBreak(wdPageBreak) Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |