I don't think so. Word files are binary files and they cannot be appended to each other as text files can. What you can do is to use a VBScript job in 24x7 to call Word COM object and programmatically open and append files using Word native methods. Example script: Sub Main() Dim ObjWord Set ObjWord = GetObject(, "Word.Application") ObjWord.Documents.Add ObjWord.Selection.InsertFile "document 1.doc", "", False, False, False ObjWord.Selection.InsertFile "document 2.doc", "", False, False, False ... etc... ObjWord.Quit Set ObjWord = Nothing End Sub See description of available Word functions in your Word documentation or MSDN See also other Word example at http://support.microsoft.com/default.aspx?kbid=258512 : Hi, : Can I use FileRead and FileWrite to merge 5 word : document (or RTF) into one document? : Thanks for your help. : Pierre
|