Hi,
I'm going deeper into the VBA programming, I'm trying to make a program for Word. A part of the code goes like this (thanks to RealisticGraphics):

...
Set NewDoc = Word.Documents.Add
NewDoc.Content = Doc1.Content & Doc2.Content
Set NewDoc = Nothing
...

Everything (almost) works, but my problem is that in the new word document everything has changed from Doc1 and Doc2 (the character font, the titles of parts...). Is there a way to add two (or more) word documents in a new one while keeping the formatting ?

Thanks.