This code will create my first page:
'MS Word
Dim oWord As Object
Dim oDoc As Object
Set oWord = CreateObject("word.application")
'Open a new document from a template file.
Set oDoc = oWord.Documents.Add(App.Path & "\Example2.dot")
But how do I insert the second (and more) pages?