Microsoft KB Archive/235897

From BetaArchive Wiki
Knowledge Base


WD2000: Sample Macro to Retrieve Page Number of Currently Viewed Page and Insertion Point

Article ID: 235897

Article Last Modified on 10/11/2006



APPLIES TO

  • Microsoft Word 2000 Standard Edition



This article was previously published under Q235897

SUMMARY

This article provides a sample Visual Basic for Applications macro that retrieves the page number of the page currently being viewed, as well as the page number where the insertion point is located.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
For more information about how to use the sample code in this article, click the article number below to view the article in the Microsoft Knowledge Base:

212536 OFF2000: How to Run Sample Code from Knowledge Base Articles


The following sample Visual Basic for Applications macro retrieves the page number of the currently viewed page and the page where the insertion point is located.

   Sub ShowViewPageNo()
      ActiveDocument.Repaginate
      varTotalPages = Selection.Information(wdNumberOfPagesInDocument)
      varVertScrollPercent = ActiveDocument.ActiveWindow _
         .VerticalPercentScrolled
      varViewPage = Int((varVertScrollPercent / 100) * varTotalPages) + 1
      varIPPage = Selection.Information(wdActiveEndPageNumber)
      MsgBox "Your insertion point is on page [" & varIPPage & "]." + _
         "You are looking at page [" & varViewPage & "].""
   End Sub
                


Additional query words: vba

Keywords: kbhowto kbmacroexample kbprogramming KB235897