Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Kurby Kurby is offline
external usenet poster
 
Posts: 1
Default Can you merge 2 Word documents together (not mail merge)

I have 2 word documents both have a lot of photos and drawn lines and both
would be a pain to copy and paste into another one so i'm wondering if i can
merge one in the other or insert one into the other like you can with
pictures or clip art.

Thanks
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Can you merge 2 Word documents together (not mail merge)

On Mon, 29 Dec 2008 17:27:00 -0800, Kurby
wrote:

I have 2 word documents both have a lot of photos and drawn lines and both
would be a pain to copy and paste into another one so i'm wondering if i can
merge one in the other or insert one into the other like you can with
pictures or clip art.

Thanks


For Word 2003 or earlier: With the cursor at the end of one document, click
Insert File and choose the second document from the dialog.

For Word 2007: With the cursor at the end of one document, click the Insert tab
of the ribbon, click the down arrow on the Object button, choose Text From File,
and choose the second document from the dialog.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.
  #3   Report Post  
stipo stipo is offline
Junior Member
 
Posts: 0
Default

Quote:
Originally Posted by Kurby View Post
I have 2 word documents both have a lot of photos and drawn lines and both
would be a pain to copy and paste into another one so i'm wondering if i can
merge one in the other or insert one into the other like you can with
pictures or clip art.

Thanks
=============================================
Here's a VB script which will merge many

documents into one word doc, in filename

alphabetic order. TO use: put the code below

into a text file with suffix".vbs", and

create a folder called "docs" in the same

place where the .vbs script is. Place all the

docs you wnt to merge into the docs folder,

then drag it onto the .vbs file. The output

will be created in "docs_CONCATENATED.doc".
=========================================
'DOCmerge - merges several Word documents (.DOC files) together
'Author: George Birbilis ) / Zoomicon (www.zoomicon.com)
'Version: 20080325
'On Error Resume Next
const ONLY_DOC = false 'set to true to allow concatenation only of .DOC files (not .TXT etc.)
const MSG_SYNTAX = "Drop a folder with Word (.DOC) documents onto this icon to produce a Word file with the concatenation of these

documents"
const MSG_FINISHED = "" '"Finished"
const TXT_SUFFIX = "_CONCATENATED.doc"
const wdPasteDefault = 0
const wdPageBreak = 7
'----------------------------------------
dim word, fs, folderpath, outdocname, folder, outdoc
'----------------------------------------
'----------------------------------------
Sub ShowList( ByRef arrListName, ByVal strPrefix )
' Custom subroutine displaying the contents of an ArrayList on a
' single line, and the capacity and size on a separate second line.
' Arguments used a
' arrListName: the name of the ArrayList to be displayed
' strPrefix: a short description to be displayed before the
' actual content of the ArrayList

Dim intLen, strItem, strList

' specify the maximum length of the descriptive text
intLen = 20

' save the ArrayList content to a string
For Each strItem in arrListName
strList = strList & " " & strItem
Next
' trim or pad the description to its maximum length, append the ArrayList content string, and display it
WScript.Echo Left( strPrefix & Space( intLen ), intLen ) & ": " & strList
' display the ArrayList's current size and capacity
WScript.Echo Left( "Count/Capacity" & Space( intLen ), intLen ) & ": " & arrListName.Count & "/" & arrListName.Capacity
End Sub
'-------------------------------------------------------
Sub ParseCommandLine
Dim args
Set args = wscript.arguments
if args.count = 0 then
msgbox MSG_SYNTAX
wscript.quit
end if
folderpath = args.item(0)
outdocname = folderpath + TXT_SUFFIX
End Sub
'----------------------------------------
Sub StartServers
'-- Start Word
Set word = CreateObject("Word.Application")
'word.Visible = true
Set fs = CreateObject("Scripting.FileSystemObject")
Set folder = fs.GetFolder(folderpath)
End Sub
'----------------------------------------
Sub DeleteOldOutput
If fs.FileExists(outdocname) Then
fs.DeleteFile(outdocname)
End If
End Sub

Sub ProcessFile(filename, insertBreak)
Dim doc
Set doc = word.Documents.Open(filename)
word.Selection.WholeStory
word.Selection.Copy
outdoc.Activate
if insertBreak then word.Selection.InsertBreak wdPageBreak

'word.Selection.PasteAndFormat wdPasteDefault
word.Selection.Paste 'use this one so that it works for Word2000 too
doc.Close
Set doc = Nothing
End Sub

Sub Process
DeleteOldOutput
Dim f, first
Dim Item
Dim outputLines
first = true
Set outputLines = CreateObject("System.Collections.ArrayList")
For Each f in folder.Files
if (ucase(right(f.path,4) ) = ".DOC" ) then
outputLines.Add f.name
'MsgBox f
end if
next
outputLines.Sort
ShowList outputLines, "output files"

For Each Item in outputLines
Dim fso, fileItem, filenm
Set fso = CreateObject("Scripting.FileSystemObject")
filenm = folderpath + "\" + Item

'MsgBox filenm 'uncomment this if you want to see the files as they are processed

Set fileItem = fso.GetFile(filenm)
if (not ONLY_DOC) or (ucase(right(fileItem.path,4)) = ".DOC") then
if first then
Set outdoc = word.Documents.Add
outdoc.SaveAs outdocname
ProcessFile fileItem.path, false
first = False
else
ProcessFile fileItem.path, true
end if
end if
Next
If Not first Then 'if at least one file was processed
outdoc.Save
outdoc.Close
End If
End Sub
'----------------------------------------
Sub Cleanup
Set outdoc = Nothing
word.Quit
Set word = Nothing
Set folder = Nothing
Set fs = Nothing
if MSG_FINISHED"" then MsgBox(MSG_FINISHED)
End Sub
'----------------------------------------
ParseCommandLine
StartServers
Process
Cleanup
Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Separating word mail merge documents Secret Microsoft Word Help 7 October 25th 08 04:01 PM
Can you limit the text in a merge field for mail merge documents? jennifer Mailmerge 1 October 23rd 08 06:22 AM
E-mail merge of Word and Excel documents... John Heitmuller. Mailmerge 1 January 30th 08 06:26 PM
Mail-Merge: Can we have master detail relationship or multiple entities in word Mail-Merge? gmax2006 Microsoft Word Help 1 March 28th 07 06:28 PM
mail merge to multiple Word documents aturnage Mailmerge 1 February 14th 06 04:42 AM


All times are GMT +1. The time now is 06:17 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"