可以这样:
Dim wdc As New WordCreator()
For i As Integer = 1 To 10
wdc.AddParagraph("Foxtable 2025春季更新").Alignment = Word.RtfHorizontalAlignment.Left
wdc.NewPage() '必须用NewPage
wdc.CurrentSection.Footer.Add(New Word.Objects.RtfString("第" & i & "页")) '通过CurrentSection设置
Next
Dim fl As String = "c:\temp\test.docx"
wdc.Save(fl) '保存文件
Process.Start(fl) '打开文件