I am trying to insert one file at the end of another but the first file's formatting gets messed up. It's lines start bleeding into the later pages.
Dim oWord As Word.Application
Dim oDoc As Word.Document
Dim oDoc2 As Word.Document
Dim oDoc3 As Word.Document
Dim oSelection As Word.Selection
oWord = CreateObject("Word.Application")
oWord.Visible = True
oDoc = oWord.Documents.Open("file1.doc")
oSelection = oWord.Selection
oSelection.EndKey()
oSelection.InsertFile("file2.doc")