关于添加WORD文档页码的问题
请教各位老师,我从网上找到一篇关于添加WORD文档页码的文章,我不知道如何添加到我的现有WORD文档中,麻烦老师指教。谢谢!代码如下:local Doc
Doc=Createobject('word.application')&&从类定义或一个可以自动控制的应用程序中创建对象。
doc.Visible= .T.
WITH doc
.Documents.Add
.Selection.InsertAfter(replicate(chr(13)+chr(10),1000))
.ActiveDocument.PageSetup.TopMargin=2/0.0352 &&设置顶边距为2厘米
.ActiveDocument.PageSetup.BottomMargin=2/0.0352 &&设置底边距为2厘米
.ActiveDocument.PageSetup.LeftMargin=2/0.0352 &&设置左边距为2厘米
.ActiveDocument.PageSetup.RightMargin=2/0.0352 &&设置右边距为2厘米
.ActiveWindow.ActivePane.View.SeekView=10
.Selection.Sections(1).Headers(1).PageNumbers.Add(5,.t.)
.Selection.Sections(1).Headers(1).Range.Text = "CAOLP"
.Selection.TypeText("共")
.Selection.Fields.Add(doc.Selection.Range, 26)
.Selection.TypeText("页 / 第")
.Selection.Fields.Add(doc.Selection.Range, -1,"Page \* MergeFormat",.f.)
.Selection.TypeText("页")
.Selection.ParagraphFormat.Alignment = 1 &&页脚居中
.ActiveWindow.ActivePane.View.SeekView=0
ENDWITH