WD: WordBasic Example to Print Current Page

Last reviewed: February 16, 1998
Article ID: Q69519
The information in this article applies to:
  • Microsoft Word for Windows, versions 1.0, 1.1, 1.1a, 2.0, 2.0a, 2.0a-CD, 2.0b, 2.0c, 6.0, 6.0a, 6.0c
  • Microsoft Word for Windows 95, versions 7.0, 7.0a
  • Word for the Macintosh, versions 6.0, 6.0.1, 6.0.1a

SUMMARY

In Word, you can create a macro to print the current page only (that is, the page where the insertion point resides).

To create this type of macro, use the appropriate procedure for your version of Word in the "More Information" section of this article.

MORE INFORMATION

WARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN RISK. Microsoft provides this macro code "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

Word versions 2.x, 6.x and 7.x

The following WordBasic macro instruction prints the current document page:

   FilePrint .Range = 2

Word for Windows versions 1.x

You can use one of the following macros for printing the current page.

Methods for single section documents only:

Macro 1:

Before you run the following macro, make sure that nothing is selected in the document.

   Sub MAIN
      EditGoto "\Page"
      FilePrint .Range = 1
      GoBack
   End Sub

Macro 2:

   Sub MAIN
      StartOfLine
      UtilRepaginateNow
      InsertField .Field = "Page"
      CharLeft 1, 1
      UnLinkFields
      PageNum$ = Selection$()
      EditClear
      FilePrint .Range = 2, .From = PageNum$, .To = PageNum$
   End SUB


Additional query words: active range
Keywords : macword winword winword2 word6 word7 word95 wordnt macword6 word kbcode kbmacro kbprg kbprint kbualink97
Version : WINDOWS:1.0,1.1,1.1a,2.0,2.0a,2.0a- CD,2.0b,2.0c,6.0,6.0a,6.0c,7.0,7.0a; MACINTOSH:6.0,6.0.1,6.0.1a
Platform : MACINTOSH WINDOWS
Issue type : kbhowto


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 16, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.