I have a table that i'm trying to use as a template that I can then copy to a new page.
i only got this much
Dim oWord As word.Application
Dim oDoc As word.Document
Dim oTable As word.Table
FileCopy("C:/1535.doc", "C:/1535_1" & ".doc")
oWord = New word.Application
oDoc = oWord.Documents.Open("C:/1535_1" & ".doc")
oDoc.Activate()
oTable = oDoc.Tables(1)
oWord.Selection.GoTo(word.WdGoToItem.wdGoToLine, word.WdGoToDirection.wdGoToLast, Nothing, Nothing)
oWord.Selection.InsertBreak(word.WdBreakType.wdPageBreak)
oDoc.Save()
oDoc.Close()
oWord.Quit()
So i want to get a copy of oTable then after the page break it makes a new page but i don't know how go to that page and put a copy of oTable.